Skip to content

Bump @typescript-eslint/parser from 5.55.0 to 5.60.1 in /web #1311

Bump @typescript-eslint/parser from 5.55.0 to 5.60.1 in /web

Bump @typescript-eslint/parser from 5.55.0 to 5.60.1 in /web #1311

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Create and publish a Docker image
on:
push:
branches:
- 'master'
tags:
- 'v*'
pull_request:
branches:
- 'master'
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: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker (web)
id: meta-web
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-web
tags: |
type=edge,branch=master
type=ref,event=pr
type=semver,pattern={{version}}
- name: Extract metadata (tags, labels) for Docker (server)
id: meta-server
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-server
tags: |
type=edge,branch=master
type=ref,event=pr
type=semver,pattern={{version}}
- name: Build and push Docker image (web)
uses: docker/build-push-action@v4
with:
context: .
file: docker/skyscraper-web.Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta-web.outputs.tags }}
labels: ${{ steps.meta-web.outputs.labels }}
- name: Build and push Docker image (server)
uses: docker/build-push-action@v4
with:
context: .
file: docker/skyscraper-server.Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta-server.outputs.tags }}
labels: ${{ steps.meta-server.outputs.labels }}