Skip to content

Commit

Permalink
Fix zip structure for linux release zips, re-enable linux release art…
Browse files Browse the repository at this point in the history
…ifacts
  • Loading branch information
Jacoby6000 committed Oct 7, 2024
1 parent 69da328 commit ad6bad6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:
LINUX_CEF_VERSION: '114.0.5735.134'
LUAJIT_VERSION: '2.1'
ENABLE_WINDOWS_RELEASES: 'false'
ENABLE_LINUX_RELEASES: 'false'
ENABLE_LINUX_RELEASES: 'true'

jobs:
build-windows-project:
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: Bolt-Linux-${{ github.sha }}
path: install/opt
path: install/opt/

# Uploads the zip file to the release matching the format of the above step
# Such that build artifacts and release artifacts are the same
Expand All @@ -216,5 +216,7 @@ jobs:
env:
GH_TOKEN: ${{ github.token }}
run: |
zip -r Bolt-Linux.zip install/opt
cd install/opt
zip -r ../../Bolt-Linux.zip .
cd ../../
gh release upload ${{ github.event.release.tag_name }} Bolt-Linux.zip

0 comments on commit ad6bad6

Please sign in to comment.