Skip to content

build(deps): bump sentry-sdk from 1.22.1 to 1.28.0 #368

build(deps): bump sentry-sdk from 1.22.1 to 1.28.0

build(deps): bump sentry-sdk from 1.22.1 to 1.28.0 #368

Workflow file for this run

name: Container image
on:
release:
types: [created]
# Run build for any PRs - we won't push in those however
pull_request:
branches:
- main
# Publish `main` as Docker `latest` image.
push:
branches:
- main
env:
IMAGE_NAME: document-merge-service
jobs:
# Push image to GitHub Packages.
# See also https://docs.docker.com/docker-hub/builds/
container-registry:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v3
- name: Build image
run: docker build . --file Dockerfile --tag $IMAGE_NAME --label "runnumber=${GITHUB_RUN_ID}"
- name: Log in to registry
if: github.event_name != 'pull_request'
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- name: Push image
if: github.event_name != 'pull_request'
run: |
IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME
# Change all uppercase to lowercase
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
# Strip git ref prefix from version
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
# Strip "v" prefix from tag name
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//')
# Use Docker `latest` tag convention
if [[ "$VERSION" == "main" ]]; then
# only push "dev" image from main branch build
echo "Pushing $IMAGE_ID:dev"
docker tag $IMAGE_NAME $IMAGE_ID:dev
docker push $IMAGE_ID:dev
else
# new version released - push "latest" and version tag
echo "Pushing $IMAGE_ID:$VERSION"
docker tag $IMAGE_NAME $IMAGE_ID:$VERSION
docker push $IMAGE_ID:$VERSION
echo "Pushing $IMAGE_ID:latest"
docker tag $IMAGE_NAME $IMAGE_ID:latest
docker push $IMAGE_ID:latest
fi