Skip to content
This repository has been archived by the owner on May 8, 2024. It is now read-only.

Reduced Sentry trace sampling rate in production environment #128

Reduced Sentry trace sampling rate in production environment

Reduced Sentry trace sampling rate in production environment #128

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: 0 6 * * 1
jobs:
codeql:
uses: ./.github/workflows/codeql.yml
playwright:
uses: ./.github/workflows/playwright.yml
eslint:
uses: ./.github/workflows/eslint.yml
build-image:
if: ${{ github.event_name != 'schedule' }}}
runs-on: ubuntu-latest
needs: [codeql, playwright, eslint]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
flavor: latest=true
images: ghcr.io/${{ github.repository }}
tags: |
type=sha
- name: Login to GitHub Container Registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build Docker Image and push
uses: docker/build-push-action@v5
with:
file: docker/Dockerfile.development
push: ${{ github.event_name == 'push' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
context: .