We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b4e57e commit 0da7101Copy full SHA for 0da7101
.github/workflows/check-anki-release.yml
@@ -17,7 +17,7 @@ jobs:
17
18
- name: Download release version of last run
19
id: download_last_release_version
20
- uses: dawidd6/action-download-artifact@v2
+ uses: dawidd6/action-download-artifact@v3
21
with:
22
name: anki-release-version
23
workflow_conclusion: success
@@ -34,6 +34,8 @@ jobs:
34
id: compare_release_version
35
run: |
36
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"
39
40
if [ "${{ steps.retrieve_latest_release_version.outputs.LATEST_RELEASE_VERSION }}" != "$LAST_RELEASE_VERSION" ]; then
41
echo "release_version_changed=true" >> $GITHUB_OUTPUT
0 commit comments