Skip to content

Bump @types/node from 20.8.2 to 20.10.7 #4

Bump @types/node from 20.8.2 to 20.10.7

Bump @types/node from 20.8.2 to 20.10.7 #4

Workflow file for this run

name: Publish Image
on:
pull_request:
push:
branches:
- main
- 'releases/*'
workflow_dispatch:
jobs:
deploy-backend:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v3
with:
images: ghcr.io/${{ github.repository }}
- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}