Files
go-hauk/.github/workflows/release.yml
Arkadiy Kukarkin f5d2b28903 Merge pull request #3 from parkan/dependabot/github_actions/docker/login-action-4
Bump docker/login-action from 3 to 4
2026-05-26 22:18:48 +02:00

26 lines
678 B
YAML

# rolling :latest image, published manually from the Actions tab (Run workflow)
name: release
on:
workflow_dispatch:
permissions:
contents: read
packages: write
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/build-push-action@v7
with:
context: .
push: true
tags: |
ghcr.io/parkan/go-hauk:latest
ghcr.io/parkan/go-hauk:${{ github.sha }}