Skip to content

Commit

Permalink
update release workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
thelindat committed Dec 24, 2021
1 parent 00bfcd3 commit 9b8d6d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Bundle files
run: |
mkdir -p ./temp/oxmysql
cp ./{LICENSE.md,README.md,fxmanifest.lua} ./temp/oxmysql
cp ./{LICENSE,README.md,fxmanifest.lua} ./temp/oxmysql
cp -r ./{lib,dist} ./temp/oxmysql
cd ./temp && zip -r ../oxmysql-${{ github.event.inputs.tag }}.zip ./oxmysql
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ jobs:
- name: Bundle files
run: |
mkdir -p ./temp/oxmysql
cp ./{LICENSE.md,README.md,fxmanifest.lua} ./temp/oxmysql
cp ./{LICENSE,README.md,fxmanifest.lua} ./temp/oxmysql
cp -r ./{lib,dist} ./temp/oxmysql
cd ./temp && zip -r ../oxmysql-${{ github.event.inputs.tag }}.zip ./oxmysql
cd ./temp && zip -r ../oxmysql-${{ env.RELEASE_VERSION }}.zip ./oxmysql
- name: Create Release
uses: "marvinpinto/[email protected]"
Expand Down

0 comments on commit 9b8d6d6

Please sign in to comment.