chore(main): release 2.42.0 (#1485) #22
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: sentry release | |
on: | |
push: | |
tags: | |
- '*' # Push events to every tag not containing / | |
env: | |
# Allows to increase Node's max heap size | |
NODE_OPTIONS: '--max_old_space_size=8192' | |
jobs: | |
cypress-run: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: yarn install, build | |
run: yarn && yarn build | |
- name: Create Sentry release | |
uses: getsentry/action-release@v1 | |
env: | |
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
SENTRY_ORG: ${{ secrets.SENTRY_ORG }} | |
SENTRY_PROJECT: graasp-builder | |
with: | |
environment: production | |
sourcemaps: './build' | |
version: ${{ github.ref }} |