Update container build to only push on merges #1178
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: Build samples | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- edge | |
- v*.* | |
pull_request: | |
types: [opened, synchronize, reopened, closed] | |
branches: | |
- edge | |
- v*.* | |
concurrency: | |
group: build-${{ github.event.pull_request.number || github.sha }} | |
cancel-in-progress: true | |
env: | |
VERSION: ${{ github.event.pull_request.number || 'latest' }} | |
# Use local-registry/radius-project/dev for PR build. Otherwise, use local-registry/radius-project. | |
CONTAINER_REGISTRY: ${{ github.event.pull_request.number && 'myregistry.localhost:5432/radius-project/dev' || 'myregistry.localhost:5432/radius-project' }} | |
# Set to true to push images to registry. | |
PUSH_IMAGE: true | |
jobs: | |
build-ghcr: | |
name: Build and push sample images to GHCR | |
if: github.event.action != 'closed' | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- directory: samples/demo/ | |
image: samples/demo | |
- directory: samples/dapr/ui/ | |
image: samples/dapr-frontend | |
- directory: samples/dapr/nodeapp/ | |
image: samples/dapr-backend | |
- directory: samples/aws/ | |
image: samples/aws | |
- directory: samples/aws-sqs/ | |
image: samples/aws-sqs | |
- directory: samples/volumes/ | |
image: samples/volumes | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
# - name: Login to Local Container Registry | |
# uses: docker/login-action@v2 | |
# with: | |
# registry: k3d-mycluster-registry.localhost:5000 | |
- name: Create k3d cluster | |
id: create-k3d-cluster | |
run: | | |
echo "testing local registry ....................." | |
k3d cluster create --agents 1 --k3s-arg "--disable=traefik@server:0" --registry-create myregistry.localhost -p 5432 | |
PORT="$(docker ps -f name=mycluster-registry)" | |
echo "$PORT" | |
- name: Download k3d | |
run: wget -q -O - https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | bash | |
- name: Build and push ${{ matrix.image }} | |
uses: docker/build-push-action@v4 | |
with: | |
context: ./${{ matrix.directory }} | |
push: ${{ env.PUSH_IMAGE }} | |
tags: ${{ env.CONTAINER_REGISTRY }}/${{ matrix.image }}:${{ env.VERSION }} |