Bump golang/go from go1.21.6 to 1.22.3 #389
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Release | |
on: # yamllint disable-line rule:truthy | |
pull_request_target: | |
types: | |
- closed | |
env: | |
docker_repo: agilepathway/pull-request-label-checker | |
jobs: | |
tag: | |
name: Tag semantic version | |
runs-on: ubuntu-22.04 | |
outputs: | |
semver: ${{ steps.tag.outputs.tag }} | |
steps: | |
- name: Tag | |
uses: K-Phoen/[email protected] | |
id: tag | |
with: | |
release_branch: master | |
release_strategy: tag | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
release: | |
needs: tag | |
name: Create GitHub Release | |
runs-on: ubuntu-22.04 | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- | |
name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22.3' | |
- | |
name: Run GoReleaser | |
uses: goreleaser/[email protected] | |
with: | |
version: latest | |
args: release --rm-dist | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
build_and_push_docker_image: | |
needs: tag | |
name: Build and push image | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
tags: ${{env.docker_repo}}:${{ needs.tag.outputs.semver }},${{env.docker_repo}}:latest | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
check_latest_tag: | |
needs: [tag, build_and_push_docker_image] | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check Docker image for new release is tagged latest | |
# (it is important to have this check to catch any regression, e.g. if we move to a different way of releasing) | |
id: check_docker_image_tagged_latest | |
# yamllint disable rule:line-length | |
# we need to pull both docker tags to do the check | |
run: | | |
docker pull ${{env.docker_repo}}:${{ needs.tag.outputs.semver }} | |
docker pull ${{env.docker_repo}}:latest | |
echo "IS_LATEST_TAGGED_CORRECTLY=$(docker image inspect ${{env.docker_repo}}:${{ needs.tag.outputs.semver }} | jq -r '.[] | (.RepoTags) | any( . == "${{env.docker_repo}}:latest") ')" >> "$GITHUB_OUTPUT" | |
# yamllint enable rule:line-length | |
- name: Fail if latest is not tagged correctly | |
if: ${{ steps.check_docker_image_tagged_latest.outputs.IS_LATEST_TAGGED_CORRECTLY == 'false' }} | |
uses: actions/github-script@v7 | |
with: | |
script: | | |
core.setFailed('The newly released Docker image ${{ needs.tag.outputs.semver }} is not tagged latest. ') |