Skip to content

(workflow): use FQN for image names #12

(workflow): use FQN for image names

(workflow): use FQN for image names #12

Workflow file for this run

# .github/workflows/release.yml
name: goreleaser
on:
push:
# run only against tags
tags:
- "*"
workflow_dispatch:
permissions:
contents: write
# TODO check why enabling this not able to push the image to ghcr.io
packages: write
# issues: write
env:
IMAGE_NAME: ghcr.io/${{ github.repository_owner }}/grpc-todo-app
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- run: git fetch --force --tags
- uses: actions/setup-go@v4
with:
go-version: stable
# More assembly might be required: Docker logins, GPG, etc.
# It all depends on your needs.
- uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.MY_GH_ACTION_TOKEN }}
KO_DOCKER_REPO: ${{ env.IMAGE_NAME }}/grpc-todo-app