Skip to content

build(deps): bump @sentry/browser from 8.40.0 to 8.41.0 in /web (#1112) #2095

build(deps): bump @sentry/browser from 8.40.0 to 8.41.0 in /web (#1112)

build(deps): bump @sentry/browser from 8.40.0 to 8.41.0 in /web (#1112) #2095

Workflow file for this run

name: ci-build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Prepare docker variables
id: vars
run: |
set -x
echo "##[set-output name=sha]$GITHUB_SHA"
echo "##[set-output name=timestamp]$(date +%s)"
- name: Build and push Docker images
uses: docker/build-push-action@v6.10.0
with:
tags: |
ghcr.io/beryju/imagik:latest
ghcr.io/beryju/imagik:latest-${{ steps.vars.outputs.timestamp }}-${{ steps.vars.outputs.sha }}
push: ${{ github.ref == 'refs/heads/main' }}
platforms: linux/amd64,linux/arm64
build-args: |
GIT_BUILD_HASH=${{ steps.vars.outputs.sha }}