Skip to content

Commit

Permalink
add separate workflow for sourcemaps
Browse files Browse the repository at this point in the history
  • Loading branch information
evanh committed Jul 4, 2023
1 parent 232982c commit 61793a1
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/admin-sourcemaps.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
on:
pull_request:
push:
branches: [master]
jobs:
build:
name: "build sourcemaps"
runs-on: ubuntu-latest
env:
ADMIN_SOURCEMAP_KEY: ${{ secrets.SNUBA_SENTRY_SOURCEMAP_KEY }}
NODE_VERSION: 19.x
steps:
- uses: actions/checkout@v3
name: Checkout code
- uses: actions/setup-python@v4
with:
python-version: 3.8
- uses: actions/setup-node@v3
with:
node-version: ${{env.NODE_VERSION}}
- name: Build admin sourcemaps
run: make build-admin

0 comments on commit 61793a1

Please sign in to comment.