Skip to content

Commit

Permalink
fix build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
positron96 committed Apr 15, 2024
1 parent c0a1da7 commit a7bdadd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/dockerimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
env:
MY_KEY: ${{ secrets.ALSO_GHCR }}
if: "${{ env.MY_KEY != '' }}"
run: echo "::set-output name=also_ghcr::true"
run: echo "also_ghcr=true" >> $GITHUB_OUTPUT

modified-folders:
runs-on: ubuntu-latest
Expand All @@ -44,16 +44,16 @@ jobs:
- name: Calculate number of folders
id: check_need_updates
run: |
[ -s "$OUTFILE" ] && echo "::set-output name=need_updates::1" || echo "::set-output name=need_updates::0"
- name: upload folder list
[ -s "$OUTFILE" ] && echo "need_updates=1">>$GITHUB_OUTPUT || echo "need_updates=0">>$GITHUB_OUTPUT
- name: Upload folder list
uses: actions/upload-artifact@v1
with:
name: folder-list
path: folders.txt

modified-folders-ghcr:
runs-on: ubuntu-latest
needs: [needs-ghcr]
needs: [needs-ghcr, modified-folders]
env:
OUTFILE: folders1.txt
REG_HOST: ghcr.io
Expand Down

0 comments on commit a7bdadd

Please sign in to comment.