Skip to content

Commit

Permalink
fix(github): release action
Browse files Browse the repository at this point in the history
  • Loading branch information
Manason committed Sep 18, 2024
1 parent 436eb50 commit 3f5b458
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ jobs:

- name: Bundle files
run: |
rm -rf ./.github ./.vscode ./.git
shopt -s extglob
mkdir ./${{ github.event.repository.name }}
cp -r !(${{ github.event.repository.name }}) ${{ github.event.repository.name }}
zip -r ./${{ github.event.repository.name }}.zip ./${{ github.event.repository.name }}
mkdir -p ./temp/${{ github.event.repository.name }}
cp ./{LICENSE,fxmanifest.lua,README.md} ./temp/${{ github.event.repository.name }}
cp -r ./{client,server} ./temp/${{ github.event.repository.name }}
cd ./temp && zip -r ../${{ github.event.repository.name }}.zip ./${{ github.event.repository.name }}
- name: Update CHANGELOG
id: changelog
Expand Down

0 comments on commit 3f5b458

Please sign in to comment.