Open patrickbussmann opened 3 years ago
Same issue, any news?
Could you solve it? I have the same issue. My workflow file is it:
jobs:
deploy-app:
name: deploy app to production
runs-on: ubuntu-latest
container:
image: ${{ vars.RUN_IMAGE_NAME }}
credentials:
username: ${{ github.actor }}
password: ${{ secrets.github_token }}
environment:
name: production
url: https://<my_url>
env:
RELEASE_VERSION: ${{ vars.RELEASE_VERSION }}
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
SENTRY_AUTH_TOKEN: XXXXXXXXXXX
SENTRY_PROJECT: <my_project_name>
steps:
- name: Git clone the repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Create Sentry release
uses: getsentry/action-release@v1
with:
finalize: false
version: ${{ vars.RELEASE_VERSION }}
- name: configure aws credentials with OpenID Provider
uses: aws-actions/configure-aws-credentials@v3
with:
role-to-assume: ${{ vars.OID_AWS_ARN_ROLE }}
role-session-name: ServerlessDeploymentSession
aws-region: ${{ vars.AWS_REGION }}
- name: deploy serverless
run: |
. cicd/deploy-app.sh
Environment
How do you use Sentry? Sentry SaaS (sentry.io)
Which SDK and version? TypeScript 4
Steps to Reproduce
Expected Result
Release is created on sentry.
This snippet is working fine.
Actual Result