Skip to content

Commit

Permalink
chore: try to fix windows sentry cli perms
Browse files Browse the repository at this point in the history
  • Loading branch information
KatoakDR committed Oct 18, 2023
1 parent 3441a3e commit 60b78d8
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
SENTRY_ORG: ${{ github.repository_owner }}
SENTRY_PROJECT: ${{ github.event.repository.name }}
run: |
echo "" > .env
echo "SENTRY_INGEST_DOMAIN=${SENTRY_INGEST_DOMAIN}" >> .env
echo "SENTRY_AUTH_TOKEN=${SENTRY_AUTH_TOKEN}" >> .env
echo "SENTRY_DSN=${SENTRY_DSN}" >> .env
Expand All @@ -62,6 +63,14 @@ jobs:
echo "__SENTRY_DEBUG__=false" >> .env
echo "__SENTRY_TRACING__=false" >> .env
- name: Create .sentryclirc file for Sentry CLI
env:
SENTRY_ADMIN_TOKEN: ${{ secrets.SENTRY_ADMIN_TOKEN }}
run: |
echo "" > .sentryclirc
echo "[auth]" >> .sentryclirc
echo "token=${SENTRY_ADMIN_TOKEN}" >> .sentryclirc
- name: Install dependencies
run: yarn install

Expand Down

0 comments on commit 60b78d8

Please sign in to comment.