Skip to content

Commit

Permalink
Fix zip file path in release generation
Browse files Browse the repository at this point in the history
Refers to #8
  • Loading branch information
L7R7 committed Jun 25, 2024
1 parent 6cd8666 commit 96a2372
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,6 @@ jobs:
with:
file: ${{ env.BINARY_PATH }}

- name: Create zip file
run: |
cd ./bin
7z a -l ${{ github.workspace }}/gitlab-helper.zip .
- if: matrix.os == 'windows-latest'
name: Set zip file path name on Windows
run: |
Expand All @@ -119,6 +114,11 @@ jobs:
run: |
echo "ZIP_PATH=./bin/gitlab-helper.zip" >> "$GITHUB_ENV"
- name: Create zip file
run: |
cd ./bin
7z a -l ${{ env.ZIP_PATH }} .
- name: Load Release URL File from release job
uses: actions/download-artifact@v4
with:
Expand Down

0 comments on commit 96a2372

Please sign in to comment.