Skip to content
This repository was archived by the owner on Apr 19, 2025. It is now read-only.

Commit b669725

Browse files
committed
chore: update release workflow
Wasn't working anyway, but don't use the tag in the zip name.
1 parent e0ed737 commit b669725

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
cp ./{server.lua,README.md,LICENSE,fxmanifest.lua,config.lua,client.lua} ./temp/ox_inventory
5151
cp -r ./{setup,modules,data} ./temp/ox_inventory
5252
cp -r ./web/build ./temp/ox_inventory/web/build
53-
cd ./temp && zip -r ../ox_inventory-${{ env.RELEASE_VERSION }}.zip ./ox_inventory
53+
cd ./temp && zip -r ../ox_inventory.zip ./ox_inventory
5454
5555
- name: Create Release
5656
uses: "marvinpinto/action-automatic-releases@v1.2.1"
@@ -59,7 +59,7 @@ jobs:
5959
repo_token: "${{ secrets.GITHUB_TOKEN }}"
6060
title: "${{ env.RELEASE_VERSION }}"
6161
prerelease: false
62-
files: ox_inventory-${{ env.RELEASE_VERSION }}.zip
62+
files: ox_inventory.zip
6363

6464
env:
6565
CI: false

0 commit comments

Comments
 (0)