Skip to content

Commit

Permalink
Build artifact upload fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Inrixia committed May 1, 2024
1 parent f4d3f5c commit 2384e28
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/autoBuildDev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,16 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 21
node-version: 21.x
- name: Install dependencies
run: npm install
- name: Build
run: npm run build-${{ matrix.runs-on }}
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
path: ./build/*
name: build-${{ matrix.runs-on }}
path: ./build/

Release:
needs: Build
Expand All @@ -34,8 +35,7 @@ jobs:
- name: Download All Artifacts
uses: actions/download-artifact@v4
with:
path: my-artifact
pattern: my-artifact-*
path: ./build/
merge-multiple: true
- name: Publish dev build on GitHub
uses: "marvinpinto/action-automatic-releases@latest"
Expand Down

0 comments on commit 2384e28

Please sign in to comment.