Skip to content

Commit

Permalink
fix step making other steps fail
Browse files Browse the repository at this point in the history
  • Loading branch information
taukakao committed Jan 30, 2024
1 parent 86cf9cb commit 7f9c0d8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/vib-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,14 @@ jobs:
- name: Install dependencies
run: sudo apt-get install jq

- name: Check if there was an update to the base image
- name: Download previous digest
if: github.event_name != 'schedule'
continue-on-error: true
run: wget https://github.com/${{ github.repository }}/releases/download/${{ env.DIGEST_RELEASE_TAG }}a/digest.txt

- name: Check if there was an update to the base image
if: github.event_name != 'schedule'
run: |
wget https://github.com/${{ github.repository }}/releases/download/${{ env.DIGEST_RELEASE_TAG }}a/digest.txt
touch digest.txt
mv digest.txt last_digest.txt
curl https://differ.vanillaos.org/images/desktop > vanilla-image-info
Expand Down

0 comments on commit 7f9c0d8

Please sign in to comment.