Skip to content

Merge pull request #1 from linus2code/master #3

Merge pull request #1 from linus2code/master

Merge pull request #1 from linus2code/master #3

name: Docker publish container image
on:
push:
branches: [ master ]
tags: [ 'v*.*.*' ]
env:
REGISTRY: ghcr.io
jobs:
publish-container-image:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18.x ]
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
# Login against a Docker registry except on PR
# https://github.com/docker/login-action
- name: Log into registry ${{ env.REGISTRY }}
if: github.event_name != 'pull_request'
uses: docker/[email protected]
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
# Build and push Docker image with Buildx (don't push on PR)
# https://github.com/docker/build-push-action
- name: Build and publish docker image
uses: docker/build-push-action@v4
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ghcr.io/norkator/poker-pocket-web-client:latest
file: Dockerfile