From 955bf01bd15e20864848bdfb8ff89ce141071de5 Mon Sep 17 00:00:00 2001 From: Ed Morley <501702+edmorley@users.noreply.github.com> Date: Fri, 19 Apr 2024 19:20:52 +0100 Subject: [PATCH] Trigger Heroku-24 builds --- .github/workflows/ci.yml | 22 ++-------------------- bin/publish-to-registries.sh | 4 ++-- 2 files changed, 4 insertions(+), 22 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1e467cd3..be2c5772 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,28 +2,13 @@ name: CI on: push: - # Avoid duplicate builds on PRs. - branches: - - main - tags: - - v* - pull_request: permissions: contents: read jobs: - shellcheck: - runs-on: ubuntu-22.04 - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Run shellcheck - run: find . -type f \( -name "*.sh" -o -path "*/bin/*" \) ! -name '*.jq' | xargs -t shellcheck build-stack: runs-on: ubuntu-22.04 - needs: - - shellcheck env: STACK: heroku-${{ matrix.stack-version }} STACK_VERSION: "${{ matrix.stack-version }}" @@ -34,7 +19,7 @@ jobs: strategy: fail-fast: false matrix: - stack-version: ["20", "22", "24"] + stack-version: ["24"] steps: - name: Checkout uses: actions/checkout@v4 @@ -53,9 +38,6 @@ jobs: run: |- docker buildx create --use bin/publish-to-registries.sh - if: success() && (github.ref_name == 'main' || github.ref_type == 'tag') - name: Unpublish temp tags from this run run: bin/unpublish-tags.sh - if: always() && (github.ref_name == 'main' || github.ref_type == 'tag') - - name: Convert docker image and for Git tags release to Heroku staging - run: bin/convert-and-publish-to-heroku.sh + if: always() diff --git a/bin/publish-to-registries.sh b/bin/publish-to-registries.sh index f2b2e38d..e476f4fb 100755 --- a/bin/publish-to-registries.sh +++ b/bin/publish-to-registries.sh @@ -42,9 +42,9 @@ publicTag="heroku/heroku:${STACK_VERSION}" # Push nightly tags to Docker Hub (e.g. heroku/heroku:22.nightly) push_group "${publicTag}" "${tempTagSuffix}" ".nightly" -if [[ "$GITHUB_REF_TYPE" == 'tag' ]]; then +if [[ true ]]; then # Push release tags to Docker Hub (e.g. heroku/heroku:22.v99) - push_group "${publicTag}" "${tempTagSuffix}" ".${GITHUB_REF_NAME}" + # push_group "${publicTag}" "${tempTagSuffix}" ".${GITHUB_REF_NAME}" # Push latest/no-suffix tags to Docker Hub (e.g. heroku/heroku:22) push_group "${publicTag}" "${tempTagSuffix}" ""