mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-10 04:22:27 +10:00
attempt to fix sentry auth issue
This commit is contained in:
@ -3,6 +3,7 @@ TURBO_TEAM=
|
|||||||
TURBO_TOKEN=
|
TURBO_TOKEN=
|
||||||
|
|
||||||
# Sentry Error Logging (Optional)
|
# Sentry Error Logging (Optional)
|
||||||
|
SENTRY_AUTH_TOKEN=
|
||||||
SERVER_SENTRY_DSN=
|
SERVER_SENTRY_DSN=
|
||||||
PUBLIC_CLIENT_SENTRY_DSN=
|
PUBLIC_CLIENT_SENTRY_DSN=
|
||||||
|
|
||||||
|
|||||||
28
.github/workflows/docker-build-push.yml
vendored
28
.github/workflows/docker-build-push.yml
vendored
@ -48,6 +48,21 @@ jobs:
|
|||||||
username: $GITHUB_REPOSITORY_OWNER
|
username: $GITHUB_REPOSITORY_OWNER
|
||||||
password: ${{ secrets.GH_TOKEN }}
|
password: ${{ secrets.GH_TOKEN }}
|
||||||
|
|
||||||
|
- name: Build and Push Docker Image
|
||||||
|
uses: docker/build-push-action@v3.2.0
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
push: true
|
||||||
|
platforms: linux/amd64
|
||||||
|
file: ${{ matrix.image }}/Dockerfile
|
||||||
|
secrets: |
|
||||||
|
"SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }}"
|
||||||
|
tags: |
|
||||||
|
amruthpillai/reactive-resume:${{ matrix.image }}-latest
|
||||||
|
amruthpillai/reactive-resume:${{ matrix.image }}-${{ steps.version.outputs.current-version }}
|
||||||
|
ghcr.io/amruthpillai/reactive-resume:${{ matrix.image }}-latest
|
||||||
|
ghcr.io/amruthpillai/reactive-resume:${{ matrix.image }}-${{ steps.version.outputs.current-version }}
|
||||||
|
|
||||||
- name: Create Sentry Release
|
- name: Create Sentry Release
|
||||||
uses: getsentry/action-release@v1.2.1
|
uses: getsentry/action-release@v1.2.1
|
||||||
env:
|
env:
|
||||||
@ -57,16 +72,3 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
environment: production
|
environment: production
|
||||||
version: ${{ steps.version.outputs.current-version }}
|
version: ${{ steps.version.outputs.current-version }}
|
||||||
|
|
||||||
- name: Build and Push Docker Image
|
|
||||||
uses: docker/build-push-action@v3.2.0
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
push: true
|
|
||||||
platforms: linux/amd64
|
|
||||||
file: ${{ matrix.image }}/Dockerfile
|
|
||||||
tags: |
|
|
||||||
amruthpillai/reactive-resume:${{ matrix.image }}-latest
|
|
||||||
amruthpillai/reactive-resume:${{ matrix.image }}-${{ steps.version.outputs.current-version }}
|
|
||||||
ghcr.io/amruthpillai/reactive-resume:${{ matrix.image }}-latest
|
|
||||||
ghcr.io/amruthpillai/reactive-resume:${{ matrix.image }}-${{ steps.version.outputs.current-version }}
|
|
||||||
|
|||||||
Reference in New Issue
Block a user