Skip to content

chore: update version #56

chore: update version

chore: update version #56

Workflow file for this run

name: Build Example Docker images
on:
workflow_dispatch:
push:
tags:
- 'v*'
jobs:
web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: docker/setup-qemu-action@v1
- uses: docker/setup-buildx-action@v1
- uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.CR_PAT }}
- uses: docker/build-push-action@v2
with:
context: .
file: ./example/Dockerfile
platforms: linux/amd64
push: true
tags: |
ghcr.io/${{ github.repository }}:example-web