Skip to content

feat: Move to viewport export #74

feat: Move to viewport export

feat: Move to viewport export #74

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Publish Docker Container
on:
push:
branches:
- '**'
tags:
- 'v*.*.*'
pull_request:
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: ghcr.io/hauketoenjes/personal_website
tags: |
type=schedule
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=ref,event=branch
type=ref,event=pr
type=sha
-
name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
with:
build-args: |
SITE_URL=https://htoenjes.de
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max