Skip to content

Bump github.com/getsentry/sentry-go from 0.24.1 to 0.25.0 #379

Bump github.com/getsentry/sentry-go from 0.24.1 to 0.25.0

Bump github.com/getsentry/sentry-go from 0.24.1 to 0.25.0 #379

Workflow file for this run

name: docker-ghcr
on:
push:
tags:
- "v*"
# Run tests for any PRs.
pull_request:
types:
- opened
- synchronize
- reopened
paths-ignore:
- "examples/**"
- "img/**"
jobs:
build_and_push:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/sue445/gitpanda
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
id: build
uses: docker/build-push-action@v5
with:
context: .
push: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: Test image
run: docker run --rm ${IMAGE_ID} -version
env:
IMAGE_ID: ${{ steps.build.outputs.imageid }}
- name: Slack Notification
uses: lazy-actions/slatify@master
if: always()
continue-on-error: true
with:
job_name: '*build_and_push*'
type: ${{ job.status }}
icon_emoji: ":octocat:"
url: ${{ secrets.SLACK_WEBHOOK }}
token: ${{ secrets.GITHUB_TOKEN }}