Merge pull request #2222 from shlinkio/develop #87
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 and publish docker image | ||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
jobs: | ||
build-image: | ||
strategy: | ||
matrix: | ||
include: | ||
- runtime: 'rr' | ||
platforms: 'linux/arm64/v8,linux/amd64' | ||
- runtime: 'rr' | ||
tag-suffix: 'roadrunner' | ||
platforms: 'linux/arm64/v8,linux/amd64' | ||
uses: shlinkio/github-actions/.github/workflows/docker-publish-image.yml@main | ||
Check failure on line 18 in .github/workflows/publish-docker-image.yml GitHub Actions / Build and publish docker imageInvalid workflow file
|
||
secrets: inherit | ||
with: | ||
image-name: shlinkio/shlink | ||
version-arg-name: SHLINK_VERSION | ||
platforms: ${{ matrix.platforms }} | ||
tags-suffix: ${{ matrix.tag-suffix }} | ||
extra-build-args: | | ||
SHLINK_RUNTIME=${{ matrix.runtime }} |