Skip to content

improved readme

improved readme #9

Workflow file for this run

name: publish
on: [push]
jobs:
publish-pwahub-api-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- 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.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: build and push pwahub-api docker image
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/arm64/v8
push: true
tags: ghcr.io/lmarschall/pwaboy:latest
cache-from: type=gha
cache-to: type=gha,mode=max