GITHUB: Update format created by "build artifacts" workflows (#2470)

* Change filenames and structure of build artifacts, for compatibility with steam version updating
Co-authored-by: CatLover <152669316+catloversg@users.noreply.github.com>
This commit is contained in:
Snarling
2026-02-04 22:59:40 -05:00
committed by GitHub
parent 79b3b9cb74
commit 2d69387227
2 changed files with 31 additions and 24 deletions

View File

@@ -20,19 +20,19 @@ jobs:
needs: [build]
steps:
- uses: actions/checkout@v4
- name: Use Node.js 24
uses: actions/setup-node@v4
with:
node-version: 24
cache: "npm"
- name: Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
path: .build
pattern: build-artifacts-*
merge-multiple: true
pattern: bitburner-*
merge-multiple: false
- name: List files
run: ls -la .build
- name: Zip
run: cd .build; for i in bitburner-*; do cd "$i"; zip -r "../$i.zip" *; cd ../; done; cd ../;
- name: List files
run: |
ls -la .build
- name: Upload to release
env:
GH_REF_NAME: ${{ github.ref_name }}