Create docker images #191
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: Create docker images | |
on: [create] | |
jobs: | |
build: | |
name: Build, push, and deploy | |
if: ${{ startsWith(github.ref, 'refs/tags/v') }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
db-type: [postgresql, mysql] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set env | |
run: | | |
echo "NOW=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_ENV | |
- name: Generate tags | |
id: generate_tags | |
run: | | |
echo "tag_patch=$(echo ${{ matrix.db-type }})-${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV | |
echo "tag_minor=$(echo ${{ matrix.db-type }})-$(echo ${GITHUB_REF#refs/tags/} | cut -d. -f1,2)" >> $GITHUB_ENV | |
echo "tag_major=$(echo ${{ matrix.db-type }})-$(echo ${GITHUB_REF#refs/tags/} | cut -d. -f1)" >> $GITHUB_ENV | |
echo "tag_latest=$(echo ${{ matrix.db-type }})-latest" >> $GITHUB_ENV | |
- uses: mr-smithers-excellent/docker-build-push@v6 | |
name: Build & push Docker image to ghcr.io for ${{ matrix.db-type }} | |
with: | |
image: umami | |
tags: ${{ env.tag_major }}, ${{ env.tag_minor }}, ${{ env.tag_patch }}, ${{ env.tag_latest }} | |
buildArgs: DATABASE_TYPE=${{ matrix.db-type }} | |
registry: ghcr.io | |
multiPlatform: true | |
platform: linux/amd64,linux/arm64 | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- uses: mr-smithers-excellent/docker-build-push@v6 | |
name: Build & push Docker image to docker.io for ${{ matrix.db-type }} | |
with: | |
image: umamisoftware/umami | |
tags: ${{ env.tag_major }}, ${{ env.tag_minor }}, ${{ env.tag_patch }}, ${{ env.tag_latest }} | |
buildArgs: DATABASE_TYPE=${{ matrix.db-type }} | |
registry: docker.io | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} |