Skip to content

Commit 8b6ec09

Browse files
committed
ci: add SENTRY_URL to builds
1 parent 32d6102 commit 8b6ec09

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

.github/workflows/pr.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ jobs:
6161
- name: Create env file
6262
run: |
6363
echo NAVIGATION_DATA_SIGNED_URL=${{ secrets.NAVIGATION_DATA_SIGNED_URL }} >> .env
64+
echo SENTRY_URL=${{ secrets.SENTRY_URL }} >> .env
65+
6466
6567
- name: Build WASM
6668
run: ./scripts/workflow.sh

.github/workflows/pre-release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v4
1616

17+
- name: Create env file
18+
run: |
19+
echo SENTRY_URL=${{ secrets.SENTRY_URL }} >> .env
20+
1721
- name: Build WASM
1822
run: ./scripts/workflow.sh
1923

.github/workflows/release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,14 @@ run-name: Create release for `${{ github.ref_name }}`
1111

1212
jobs:
1313
release-wasm:
14-
runs-on: windows-2022
14+
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v4
1717

18+
- name: Create env file
19+
run: |
20+
echo SENTRY_URL=${{ secrets.SENTRY_URL }} >> .env
21+
1822
- name: Build WASM
1923
run: ./scripts/workflow.sh
2024

0 commit comments

Comments
 (0)