test action dependent docker builds #5
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: images | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
publish: | |
name: Publish | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22 | |
- | |
uses: imjasonh/[email protected] | |
- | |
run: | | |
TAG_KKV=7fa31f42731fc20a77988b478a3896732cc3dc88 | |
crane cp docker.io/yolean/kafka-keyvalue:$TAG_KKV ghcr.io/yolean/kafka-keyvalue:$TAG_KKV | |
- | |
name: Build and push builder-base | |
uses: docker/build-push-action@v5 | |
env: | |
SOURCE_DATE_EPOCH: 0 | |
with: | |
context: builder-base | |
tags: | | |
yolean/builder-base:latest | |
ghcr.io/yolean/builder-base:latest | |
ghcr.io/yolean/builder-base:${{ github.sha }} | |
platforms: linux/amd64,linux/arm64/v8 | |
push: false | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- | |
name: Build and push builder-base-gcc | |
uses: docker/build-push-action@v5 | |
env: | |
SOURCE_DATE_EPOCH: 0 | |
with: | |
context: builder-base-gcc | |
build-contexts: | | |
yolean/builder-base=docker-image://yolean/builder-base:latest | |
tags: | | |
yolean/builder-base-gcc:latest | |
ghcr.io/yolean/builder-base-gcc:latest | |
ghcr.io/yolean/builder-base-gcc:${{ github.sha }} | |
platforms: linux/amd64,linux/arm64/v8 | |
push: false | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- | |
name: Build and push builder-quarkus | |
uses: docker/build-push-action@v5 | |
env: | |
SOURCE_DATE_EPOCH: 0 | |
with: | |
context: builder-quarkus | |
build-contexts: | | |
yolean/builder-base=docker-image://yolean/builder-base:latest | |
yolean/builder-base-gcc=docker-image://yolean/builder-base-gcc:latest | |
tags: | | |
yolean/builder-quarkus:latest | |
ghcr.io/yolean/builder-quarkus:latest | |
ghcr.io/yolean/builder-quarkus:${{ github.sha }} | |
platforms: linux/amd64,linux/arm64/v8 | |
push: false | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |