From 666c20971295b2e2a05844786da9bd05d4b8246c Mon Sep 17 00:00:00 2001 From: Aaron Elkiss Date: Tue, 5 May 2026 16:17:52 -0400 Subject: [PATCH] gha updates * tag-release shouldn't use unstable * build should not push latest by default --- .github/workflows/build.yml | 4 ++-- .github/workflows/tag-release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6212273a..c10751b4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -46,8 +46,8 @@ jobs: dockerfile: Dockerfile img_tag: ${{ inputs.img_tag }} tag: ${{ inputs.ref }} - push_latest: ${{ inputs.push_latest}} + push_latest: ${{ inputs.push_latest || false }} registry_token: ${{ github.token }} - rebuild: ${{ inputs.rebuild }} + rebuild: ${{ inputs.rebuild || false }} build-args: 'version="commit ${{ github.sha }}"' platforms: ${{ inputs.platforms || 'linux/amd64,linux/arm64' }} diff --git a/.github/workflows/tag-release.yml b/.github/workflows/tag-release.yml index 9a6d33b2..02fca2e6 100644 --- a/.github/workflows/tag-release.yml +++ b/.github/workflows/tag-release.yml @@ -11,6 +11,6 @@ jobs: - uses: hathitrust/github_actions/tag-release@v1 with: registry_token: ${{ github.token }} - existing_tag: ghcr.io/hathitrust/feed-unstable:${{ github.sha }} + existing_tag: ghcr.io/hathitrust/feed:${{ github.sha }} image: ghcr.io/hathitrust/feed new_tag: ${{ github.event.release.tag_name }}