Skip to content

Commit 0da7101

Browse files
committed
Upgrade action version in check-anki-release, add echo output of retrieved Anki release
1 parent 7b4e57e commit 0da7101

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/check-anki-release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
- name: Download release version of last run
1919
id: download_last_release_version
20-
uses: dawidd6/action-download-artifact@v2
20+
uses: dawidd6/action-download-artifact@v3
2121
with:
2222
name: anki-release-version
2323
workflow_conclusion: success
@@ -34,6 +34,8 @@ jobs:
3434
id: compare_release_version
3535
run: |
3636
LAST_RELEASE_VERSION=$(cat anki-release-version 2> /dev/null || echo "NOT FOUND")
37+
echo "Latest: ${{ steps.retrieve_latest_release_version.outputs.LATEST_RELEASE_VERSION }}"
38+
echo "Last: $LAST_RELEASE_VERSION"
3739
3840
if [ "${{ steps.retrieve_latest_release_version.outputs.LATEST_RELEASE_VERSION }}" != "$LAST_RELEASE_VERSION" ]; then
3941
echo "release_version_changed=true" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)