Skip to content

Commit

Permalink
ci: Upload build artifacts
Browse files Browse the repository at this point in the history
Not tested, will tweak if needed
  • Loading branch information
Mixaz017 committed Nov 3, 2023
1 parent 77171ea commit 1ed381e
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 'latest'
cache: 'pnpm'
node-version: latest
cache: pnpm

- name: Install dependencies
run: pnpm install
Expand All @@ -38,3 +38,11 @@ jobs:
run: pnpm run dist
env:
GH_TOKEN: ${{ secrets.github_token }}

- name: Upload artifacts
uses: actions/upload-artifacts
with:
name: binaries
path: |
dist/*
!dist/*.ya?ml

0 comments on commit 1ed381e

Please sign in to comment.