Skip to content

tighten github action tag trigger to match only version tags #1

tighten github action tag trigger to match only version tags

tighten github action tag trigger to match only version tags #1

Workflow file for this run

name: Docker build (version + latest)
on:
push: { tags: 'v[0-9]+.[0-9]+.[0-9]+' }
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Extract tag
run: echo "TAG=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags:
- dannyben/bashly

Check failure on line 29 in .github/workflows/docker-latest.yml

View workflow run for this annotation

GitHub Actions / Docker build (version + latest)

Invalid workflow file

The workflow is not valid. .github/workflows/docker-latest.yml (Line: 29, Col: 13): A sequence was not expected
- dannyben/bashly:${{ env.TAG }}