Skip to content

Merge pull request #781 from doerfli/dependabot/bundler/bundler-0d983… #1435

Merge pull request #781 from doerfli/dependabot/bundler/bundler-0d983…

Merge pull request #781 from doerfli/dependabot/bundler/bundler-0d983… #1435

Workflow file for this run

name: Docker
on:
push:
branches: [ main ]
tags:
- '*'
pull_request:
branches:
- main
jobs:
docker:
if: github.actor != 'dependabot[bot]'
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v6
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/metadata-action@v5
id: meta
with:
images: ghcr.io/doerfli/reeper/reeper
tags: |
type=ref,event=branch
type=ref,event=pr
type=ref,event=tag
type=sha,prefix=
- uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}