mirror of
https://github.com/parkan/go-hauk.git
synced 2026-08-06 21:30:23 +02:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
26 lines
678 B
YAML
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@v7
|
|
- uses: docker/setup-buildx-action@v4
|
|
- 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 }}
|