Skip to content

Commit

Permalink
Fix tar file structure
Browse files Browse the repository at this point in the history
Files should be in the root of the tarball
  • Loading branch information
linuxdaemon committed Feb 9, 2024
1 parent 65fd08d commit 9c18180
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ jobs:
- name: Build Inspircd ${{matrix.version}}
run: bash install.sh ${{matrix.version}}
- name: Archive Artifacts
run: tar cvzf inspircd.${{matrix.version}}.${{matrix.os}}.tar.gz run/*
working-directory: run
run: tar cvzf inspircd.${{matrix.version}}.${{matrix.os}}.tar.gz ./*
- name: Upload archives
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 9c18180

Please sign in to comment.