Skip to content

Commit

Permalink
Deploy @msw-devtools/extension
Browse files Browse the repository at this point in the history
  • Loading branch information
vkruglikov committed Jan 4, 2025
1 parent 9cb8840 commit a926bda
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/extension.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Deploy @msw-devtools/extension

on:
push:
branches: ['master']
paths:
- 'packages/core/**'
- 'packages/extension/**'
- '.github/workflows/extension.yml'

permissions:
contents: read
pages: write
id-token: write

jobs:
release:
name: Build and Release
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-node
- uses: ./.github/actions/install-npm-deps

- name: Build @msw-devtools/extension
run: npm run build -- --filter=@msw-devtools/extension

- name: Archive build
run: |
tar -czf extension.tar.gz ./packages/extension/dist

0 comments on commit a926bda

Please sign in to comment.