diff --git a/.github/workflows/vib-build.yml b/.github/workflows/vib-build.yml index 693fedb..0c27ac3 100644 --- a/.github/workflows/vib-build.yml +++ b/.github/workflows/vib-build.yml @@ -28,9 +28,11 @@ jobs: run: | bash ${GITHUB_WORKSPACE}/.github/workflows/check_image_update.sh echo "exitcode=$?" >> "$GITHUB_OUTPUT" - curl https://github.com/${{ github.repository }}/releases/download/${{ env.DIGEST_RELEASE_TAG }}/digest.txt + curl https://github.com/${{ github.repository }}/releases/download/${{ env.DIGEST_RELEASE_TAG }}/digest.txt > last_digest.txt + echo Old digest is: $(cat last_digest.txt) curl https://differ.vanillaos.org/images/desktop > vanilla-image-info echo "digest=$(jq -r '.image.releases[-1].digest' vanilla-image-info)" > digest.txt + echo New digest is: $(cat digest.txt) - name: Update triggered manually if: github.event_name == 'schedule'