Merge pull request #2345 from shlinkio/develop #97
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/amd64' # TODO Build on linux/arm64/v8 again. For some reason it is failing | |
- runtime: 'rr' | |
tag-suffix: 'roadrunner' | |
platforms: 'linux/amd64' # TODO Build on linux/arm64/v8 again. For some reason it is failing | |
uses: shlinkio/github-actions/.github/workflows/docker-publish-image.yml@main | |
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 }} |