Skip to content

Bump sentry-sdk from 1.45.0 to 2.2.1 #75

Bump sentry-sdk from 1.45.0 to 2.2.1

Bump sentry-sdk from 1.45.0 to 2.2.1 #75

Workflow file for this run

name: Build Image
permissions:
packages: write
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
# https://github.com/actions/virtual-environments/issues/709
- name: Free disk space
run: |
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
sudo apt-get clean
df -h
- uses: actions/[email protected]
- name: Log in to the Container registry
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata for Docker
id: meta
uses: docker/[email protected]
with:
images: ghcr.io/tris10au/homeautomation
tags: |
type=ref,event=branch
type=ref,event=pr
type=raw,value=latest
- name: Build and Push
uses: docker/[email protected]
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}