Skip to content

chore: update dependencies in package.json and package-lock.json #50

chore: update dependencies in package.json and package-lock.json

chore: update dependencies in package.json and package-lock.json #50

Workflow file for this run

name: Build and Publish Docker Container
on:
push:
branches:
- main
# The default permissions of the auto generated `GITHUB_TOKEN` only allows read access this will ensure
# that write access is also available. More information
# https://docs.github.com/en/actions/security-for-github-actions/security-guides/automatic-token-authentication#permissions-for-the-github_token
permissions:
contents: read
packages: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name }}:latest