Skip to content

Commit

Permalink
fix steps output syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jtenholder committed Oct 31, 2023
1 parent 906dac6 commit daf5071
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/nightly-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ jobs:
id: tag

- name: Starting the nightly build for ${{ steps.tag.outputs.TAG }}
run: echo "The tag is $TAG"
run: echo "The tag is ${{ steps.tag.outputs.TAG }}"

- name: Check out the code
uses: actions/checkout@v4

- name: Create the artifact
run: tar -cvf nightly-$TAG.tar ./*
run: tar -cvf nightly-${{ steps.tag.outputs.TAG }}.tar ./*

- name: Upload the artifact
uses: actions/upload-artifact@v3
with:
name: nightly-$TAG.tar
path: nightly-$TAG.tar
name: nightly-${{ steps.tag.outputs.TAG }}.tar
path: nightly-${{ steps.tag.outputs.TAG }}.tar

0 comments on commit daf5071

Please sign in to comment.