Skip to content

Commit

Permalink
BDE-226 attach zip files to the build
Browse files Browse the repository at this point in the history
  • Loading branch information
nxmatic committed Mar 11, 2024
1 parent 6901122 commit b1a0a1f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@ on:

jobs:
deploy:
permissions:
checks: write
contents: read
id-token: write
packages: write
pull-requests: write
statuses: write
runs-on:
- ${{ github.repository_owner != github.actor && 'ubuntu-latest' || 'self-hosted' }}

Expand All @@ -49,3 +56,15 @@ jobs:

- name: Build
run: pnpm build:chrome

- name: Zip the packages
run: |
pushd dist
zip -r chrome.zip chrome
popd
- name: Upload build artifact
uses: actions/upload-artifact@v2
with:
name: chrome
path: ./dist/chrome.zip

0 comments on commit b1a0a1f

Please sign in to comment.