We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d144e6 commit a424a1aCopy full SHA for a424a1a
.github/workflows/build.yml
@@ -2,7 +2,7 @@ name: Build Test
2
3
on: [pull_request, push]
4
5
-env:
+env:
6
NEXT_PUBLIC_BASE_URL: https://thenextlvl.net
7
8
jobs:
@@ -17,7 +17,9 @@ jobs:
17
- run: bun run build
18
19
- name: Upload Source Map
20
- uses: faststats-dev/[email protected]
+ # This condition ensures the step only runs on the main branch
21
+ if: github.ref == 'refs/heads/main' && github.event_name == 'push'
22
+ uses: faststats-dev/[email protected]
23
with:
24
api-key: ${{ secrets.FASTSTATS_API_KEY }}
- dist-dir: .output/public/assets
25
+ dist-dir: .output/public/assets
0 commit comments