Skip to content

Commit cdd28d6

Browse files
committed
update action
1 parent 8e79f48 commit cdd28d6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ jobs:
4343
- name: Pack binaries
4444
run: |
4545
cd WSTD_FL3NGR
46-
tar -c -h -z -f ${{ github.event.repository.name }}-linux-x86_64-${{ github.event.pull_request.number || env.action_tag }}.tar.gz bin/
46+
mv bin WSTD_FL3NGR
47+
tar -c -h -z -f ${{ github.event.repository.name }}-linux-x86_64-${{ github.event.pull_request.number || env.action_tag }}.tar.gz WSTD_FL3NGR/
4748
- uses: actions/upload-artifact@v3
4849
with:
4950
name: ${{ github.event.repository.name }}-linux-x86_64-${{ github.event.pull_request.number || env.action_tag }}
@@ -101,7 +102,8 @@ jobs:
101102
- name: Pack binaries
102103
run: |
103104
cd WSTD_FL3NGR
104-
tar -c -h -z -f ${{ github.event.repository.name }}-win64-${{ github.event.pull_request.number || env.action_tag }}.tar.gz bin/
105+
mv bin WSTD_FL3NGR
106+
tar -c -h -z -f ${{ github.event.repository.name }}-win64-${{ github.event.pull_request.number || env.action_tag }}.tar.gz WSTD_FL3NGR/
105107
- uses: actions/upload-artifact@v3
106108
with:
107109
name: ${{ github.event.repository.name }}-win64-${{ github.event.pull_request.number || env.action_tag }}

0 commit comments

Comments
 (0)