Skip to content

Upgrade Python and Ark in Dockerfile, update CV πŸ˜‡ #53

Upgrade Python and Ark in Dockerfile, update CV πŸ˜‡

Upgrade Python and Ark in Dockerfile, update CV πŸ˜‡ #53

Workflow file for this run

name: Build and push website to GitHub Container Registry
on:
workflow_dispatch:
push:
paths:
- 'static-sites/ark/**/*'
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
-
name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
# list of Docker images to use as base name for tags
images: |
ghcr.io/wokoman/website
# generate Docker tags based on the following events/attributes
tags: |
type=ref,event=tag
type=sha
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v5
with:
context: static-sites
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}