fix(deps): update sentry-javascript monorepo to v7.114.0 #176
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: Build and publish the container image | |
on: | |
push: | |
branches: | |
- main | |
- next | |
pull_request: | |
branches: | |
- main | |
jobs: | |
reviewdog-github-check: | |
permissions: | |
checks: write | |
contents: read | |
pull-requests: write | |
name: reviewdog (github-check) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install cairo | |
run: | | |
sudo apt update | |
sudo apt install -y build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev | |
- name: Run reviewdog | |
uses: reviewdog/action-eslint@v1 | |
env: | |
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
reporter: github-check # Change reporter. | |
reviewdog-pr: | |
permissions: | |
checks: write | |
contents: read | |
pull-requests: write | |
if: github.event_name == 'pull_request' | |
name: reviewdog on Pull Request | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install cairo | |
run: | | |
sudo apt update | |
sudo apt install -y build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev | |
- name: Run reviewdog | |
uses: reviewdog/action-eslint@v1 | |
env: | |
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
reporter: github-pr-review # Change reporter. | |
build-and-push-image: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: prepare variables | |
uses: ./.github/actions/docker-push-vars | |
id: ev | |
env: | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Log in to the Container registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
platforms: linux/amd64 | |
push: true | |
tags: | | |
ghcr.io/bentodevs/bento-app:gh-${{ steps.ev.outputs.branchNameContainer }} | |
ghcr.io/bentodevs/bento-app:gh-${{ steps.ev.outputs.branchNameContainer }}-${{ steps.ev.outputs.shortHash }} | |
- name: Comment on PR | |
if: github.event_name == 'pull_request' | |
continue-on-error: true | |
uses: ./.github/actions/comment-pr-instructions | |
with: | |
tag: gh-${{ steps.ev.outputs.branchNameContainer }}-${{ steps.ev.outputs.timestamp }}-${{ steps.ev.outputs.shortHash }} |