Skip to content

Commit

Permalink
chore: update release workflow
Browse files Browse the repository at this point in the history
Wasn't working anyway, but don't use the tag in the zip name.
  • Loading branch information
thelindat committed Jan 2, 2022
1 parent e0ed737 commit b669725
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
cp ./{server.lua,README.md,LICENSE,fxmanifest.lua,config.lua,client.lua} ./temp/ox_inventory
cp -r ./{setup,modules,data} ./temp/ox_inventory
cp -r ./web/build ./temp/ox_inventory/web/build
cd ./temp && zip -r ../ox_inventory-${{ env.RELEASE_VERSION }}.zip ./ox_inventory
cd ./temp && zip -r ../ox_inventory.zip ./ox_inventory
- name: Create Release
uses: "marvinpinto/action-automatic-releases@v1.2.1"
Expand All @@ -59,7 +59,7 @@ jobs:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
title: "${{ env.RELEASE_VERSION }}"
prerelease: false
files: ox_inventory-${{ env.RELEASE_VERSION }}.zip
files: ox_inventory.zip

env:
CI: false
Expand Down

0 comments on commit b669725

Please sign in to comment.