Publish v1.1.2 (#24) #33
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker Image CI | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- "v**" | |
branches: | |
- main | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
jobs: | |
build-and-push-image: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup node and deps | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "20" | |
cache: npm | |
cache-dependency-path: package-lock.json | |
- run: npm i | |
- name: Build app | |
run: npm run build | |
- name: Log in to the Container registry | |
uses: docker/login-action@v2.0.0 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v4.0.1 | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
tags: | # almost same as action default | |
type=ref,event=branch | |
type=ref,event=tag,pattern={{raw}} | |
type=ref,event=pr | |
- name: Setup docker buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v4.2.1 | |
with: | |
context: . | |
push: true | |
platforms: linux/arm64,linux/amd64 | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} |