use more lenient point validation #45
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 for Development | |
on: | |
push: | |
branches: | |
- '*' | |
release: | |
types: [released] | |
env: | |
REGISTRY: ghcr.io | |
jobs: | |
build-image: | |
name: Build image | |
runs-on: ubuntu-latest | |
# timeout-minutes: 40 | |
steps: | |
- name: Checkout Code | |
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: Log into container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Docker meta | |
uses: docker/metadata-action@v5 | |
id: meta | |
with: | |
images: | | |
${{ env.REGISTRY }}/${{ github.repository }} | |
tags: | | |
type=ref,event=branch | |
type=sha | |
type=semver,pattern={{version}},enable=${{ github.event_name == 'release' }} | |
type=semver,pattern={{major}},enable=${{ github.event_name == 'release' }} | |
type=semver,pattern={{major}}.{{minor}},enable=${{ github.event_name == 'release' }} | |
type=edge | |
- name: Build and push | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
push: true | |
target: alfalfa-dependencies | |
platforms: linux/amd64 | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.output.labels }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |