Skip to content

Commit

Permalink
ci: fix binary path in nightly ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ttytm committed Mar 16, 2024
1 parent 0b5e562 commit b17ced8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nightly_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: ${{ env.ARTIFACT }}
path: ./v-analyzer/bin/v-analyzer${{ matrix.bin_ext }}
path: ./bin/v-analyzer${{ matrix.bin_ext }}

- name: Prepare release
shell: bash
run: |
now=$(date -u +'%Y-%m-%d %H:%M:%S UTC')
echo "BODY=Generated on <samp>$now</samp> from commit ${{ github.sha }}." >> $GITHUB_ENV
7z a -tzip ${{ env.ARTIFACT }}.zip ./v-analyzer/bin/v-analyzer${{ matrix.bin_ext }}
7z a -tzip ${{ env.ARTIFACT }}.zip ./bin/v-analyzer${{ matrix.bin_ext }}
- name: Update nightly tag
uses: richardsimko/update-tag@v1
Expand Down

0 comments on commit b17ced8

Please sign in to comment.