Skip to content

Bump eslint from 9.2.0 to 9.3.0 #71

Bump eslint from 9.2.0 to 9.3.0

Bump eslint from 9.2.0 to 9.3.0 #71

Workflow file for this run

name: Docker
on:
workflow_dispatch:
push:
branches:
- 'master'
tags:
- 'v*'
pull_request:
branches:
- 'master'
jobs:
build:
runs-on: ubuntu-latest
environment: 'docker hub'
steps:
- uses: docker/setup-buildx-action@v3
- name: Log in to Docker Hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_LOGIN }}
password: ${{ secrets.DOCKER_TOKEN }}
- id: meta
uses: docker/metadata-action@v5
with:
images: frogpond/ccc-server
- uses: actions/checkout@v4
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}