Switch to shared docker builder workflow #21
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: Docker Container | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [ "main" ] | ||
# Publish semver tags as releases. | ||
tags: [ 'v*.*.*' ] | ||
pull_request: | ||
branches: [ "main" ] | ||
env: | ||
# Use docker.io for Docker Hub if empty | ||
REGISTRY: ghcr.io | ||
# github.repository as <account>/<repo> | ||
IMAGE_NAME: ${{ github.repository }} | ||
# Target platforms | ||
PLATFORMS: linux/amd64,linux/arm/v7,linux/arm64 | ||
jobs: | ||
build: | ||
uses: riesinger/github-workflows/.github/workflows/build-docker.yml@main | ||
Check failure on line 21 in .github/workflows/docker.yaml GitHub Actions / .github/workflows/docker.yamlInvalid workflow file
|
||
with: | ||
image-name: plausible-exporter | ||
secrets: inherit |