mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-16 06:18:42 +02:00
CD: Split build-artifacts.yml into 2 workflows (#2309)
This commit is contained in:
29
.github/workflows/build-artifacts.yml
vendored
29
.github/workflows/build-artifacts.yml
vendored
@@ -1,8 +1,8 @@
|
||||
name: Build artifacts
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [published]
|
||||
workflow_dispatch:
|
||||
workflow_call:
|
||||
|
||||
env:
|
||||
GH_TOKEN: ${{ github.token }}
|
||||
@@ -88,28 +88,3 @@ jobs:
|
||||
include-hidden-files: true
|
||||
path: .build/*.zip
|
||||
if-no-files-found: error
|
||||
|
||||
upload:
|
||||
name: Upload
|
||||
runs-on: ubuntu-latest
|
||||
needs: [build-windows, build-linux, build-mac]
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Use Node.js 20
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20
|
||||
cache: "npm"
|
||||
- name: Download artifacts
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
path: .build
|
||||
pattern: build-artifacts-*
|
||||
merge-multiple: true
|
||||
- name: List files
|
||||
run: ls -la .build
|
||||
- name: Upload to release
|
||||
env:
|
||||
GH_REF_NAME: ${{ github.ref_name }}
|
||||
run: |
|
||||
for i in .build/*.zip; do gh release upload "$GH_REF_NAME" "$i" --clobber; done;
|
||||
|
||||
40
.github/workflows/build-upload-artifacts.yml
vendored
Normal file
40
.github/workflows/build-upload-artifacts.yml
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
name: Build and upload artifacts
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [published]
|
||||
|
||||
env:
|
||||
GH_TOKEN: ${{ github.token }}
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build artifacts
|
||||
uses: ./.github/workflows/build-artifacts.yml
|
||||
|
||||
upload:
|
||||
name: Upload
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
needs: [build]
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Use Node.js 20
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20
|
||||
cache: "npm"
|
||||
- name: Download artifacts
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
path: .build
|
||||
pattern: build-artifacts-*
|
||||
merge-multiple: true
|
||||
- name: List files
|
||||
run: ls -la .build
|
||||
- name: Upload to release
|
||||
env:
|
||||
GH_REF_NAME: ${{ github.ref_name }}
|
||||
run: |
|
||||
for i in .build/*.zip; do gh release upload "$GH_REF_NAME" "$i" --clobber; done;
|
||||
Reference in New Issue
Block a user