This repository has been archived by the owner on Mar 16, 2024. It is now read-only.
Merge pull request #14 from cloudnautique/add_cdk_runner #1
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: Publish Utility Images | |
on: | |
push: | |
tags: | |
- "**/v[0-9]*" | |
paths: | |
- "utils/**" | |
jobs: | |
publish: | |
name: Publish | |
runs-on: buildjet-4vcpu-ubuntu-2204 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
with: | |
buildkitd-flags: "--debug" | |
- name: Login to GHCR | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set tag | |
run: ./scripts/setup_tags.sh | |
- name: Build and Publish Docker Images | |
run: | | |
docker buildx build --push --platform linux/amd64,linux/arm64 --tag ghcr.io/acorn-io/aws/${IMAGE}:${TAG} ./${IMAGE} |