Bump to Alpine 3.20 (#53) #10
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: Deploy tagged | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
deployment: | |
name: Build and publish the newly tagged image | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: write | |
packages: write | |
steps: | |
- name: Get latest tag | |
uses: oprypin/find-latest-tag@v1 | |
id: latest-tag | |
with: | |
repository: ${{ github.repository }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Checkout repository code | |
uses: actions/checkout@main | |
with: | |
fetch-depth: 0 | |
- name: Build and push latest image (w/ aws cli) | |
uses: ./.github/workflows/publish | |
with: | |
bake_target: aws | |
aws_role_to_assume: ${{ secrets.AWS_ROLE_TO_ASSUME }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
git_tag: ${{ steps.latest-tag.outputs.tag }} | |
publish_release: true | |
release_title: ${{ steps.latest-tag.outputs.tag }} | |
bake_set: | | |
aws.tags=${{ secrets.PUBLIC_RUNNER_TERRAFORM_ECR_REPOSITORY_URL }}:latest | |
aws.tags=${{ secrets.PUBLIC_RUNNER_TERRAFORM_ECR_REPOSITORY_URL }}:${{ steps.latest-tag.outputs.tag }} | |
aws.tags=ghcr.io/spacelift-io/runner-terraform:latest | |
aws.tags=ghcr.io/spacelift-io/runner-terraform:${{ steps.latest-tag.outputs.tag }} | |
- name: Build and push latest image (w/ gcloud cli) | |
uses: ./.github/workflows/publish | |
with: | |
bake_target: gcp | |
aws_role_to_assume: ${{ secrets.AWS_ROLE_TO_ASSUME }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
git_tag: ${{ steps.latest-tag.outputs.tag }} | |
publish_release: false | |
bake_set: | | |
gcp.tags=${{ secrets.PUBLIC_RUNNER_TERRAFORM_ECR_REPOSITORY_URL }}:gcp-latest | |
gcp.tags=${{ secrets.PUBLIC_RUNNER_TERRAFORM_ECR_REPOSITORY_URL }}:gcp-${{ steps.latest-tag.outputs.tag }} | |
gcp.tags=ghcr.io/spacelift-io/runner-terraform:gcp-latest | |
gcp.tags=ghcr.io/spacelift-io/runner-terraform:gcp-${{ steps.latest-tag.outputs.tag }} | |
- name: Build and push latest image (w/ az cli) | |
uses: ./.github/workflows/publish | |
with: | |
bake_target: azure | |
aws_role_to_assume: ${{ secrets.AWS_ROLE_TO_ASSUME }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
git_tag: ${{ steps.latest-tag.outputs.tag }} | |
publish_release: false | |
bake_set: | | |
azure.tags=${{ secrets.PUBLIC_RUNNER_TERRAFORM_ECR_REPOSITORY_URL }}:azure-latest | |
azure.tags=${{ secrets.PUBLIC_RUNNER_TERRAFORM_ECR_REPOSITORY_URL }}:azure-${{ steps.latest-tag.outputs.tag }} | |
azure.tags=ghcr.io/spacelift-io/runner-terraform:azure-latest | |
azure.tags=ghcr.io/spacelift-io/runner-terraform:azure-${{ steps.latest-tag.outputs.tag }} | |