chore: add CI, dependabot, and release workflow

This commit is contained in:
Arkadiy Kukarkin
2026-05-26 21:55:09 +02:00
parent df0b4b4a76
commit 5261ee927e
3 changed files with 83 additions and 0 deletions

25
.github/workflows/release.yml vendored Normal file
View File

@@ -0,0 +1,25 @@
# 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@v4
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/build-push-action@v6
with:
context: .
push: true
tags: |
ghcr.io/parkan/go-hauk:latest
ghcr.io/parkan/go-hauk:${{ github.sha }}