ci: fix broken release workflow (#23)

This commit is contained in:
Robbie Penziol
2025-07-15 14:41:00 -07:00
committed by GitHub
parent ac2fd43215
commit 38f1a1bc27

View File

@@ -1,15 +1,18 @@
name: Release name: Release
on: on:
push: push:
branches: branches:
- main - main
jobs: jobs:
build-tag-release: build-tag-release:
name: Build, tag, and release Docker image name: Build, tag, and release Docker image
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v2 uses: actions/checkout@v4
- name: Setup release please - name: Setup release please
uses: google-github-actions/release-please-action@v2 uses: google-github-actions/release-please-action@v2
id: release id: release
@@ -18,15 +21,18 @@ jobs:
release-type: simple release-type: simple
changelog-path: CHANGELOG.md changelog-path: CHANGELOG.md
package-name: zap2xml package-name: zap2xml
- name: Login into GitHub Container Registry - name: Login into GitHub Container Registry
if: ${{ steps.release.outputs.release_created }} if: ${{ steps.release.outputs.release_created }}
run: echo ${{ secrets.CR_PAT }} | docker login ghcr.io -u $GITHUB_ACTOR --password-stdin run: echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u $GITHUB_ACTOR --password-stdin
- name: Build Docker image - name: Build Docker image
if: ${{ steps.release.outputs.release_created }} if: ${{ steps.release.outputs.release_created }}
run: | run: |
docker build \ docker build \
-t "ghcr.io/${GITHUB_REPOSITORY}:${{ steps.release.outputs.tag_name }}" \ -t "ghcr.io/${GITHUB_REPOSITORY}:${{ steps.release.outputs.tag_name }}" \
-t "ghcr.io/${GITHUB_REPOSITORY}:latest" . -t "ghcr.io/${GITHUB_REPOSITORY}:latest" .
- name: Release Docker image - name: Release Docker image
if: ${{ steps.release.outputs.release_created }} if: ${{ steps.release.outputs.release_created }}
run: | run: |