Skip to content

Workflow file for this run

name: publish to ghcr
on:
workflow_dispatch:
push:
branches:
- master
jobs:
push:
name: "g5v:latest"
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Set up QEMU
uses: docker/[email protected]
- name: Set up Docker Buildx
uses: docker/[email protected]
- id: string
uses: ASzc/change-string-case-action@v5
with:
string: ${{ github.repository_owner }}
- uses: actions/[email protected]
- uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.TOKEN }}
- uses: actions/[email protected]
with:
node-version: 16
cache: 'yarn'
- run: yarn install
- run: yarn build
- uses: docker/[email protected]
with:
context: .
file: DockerfileLight
platforms: linux/amd64,linux/arm64,linux/arm/v7
push: true
tags: |
ghcr.io/${{ steps.string.outputs.lowercase }}/g5v:latest