Skip to content

Merge pull request #5 from gitbutlerapp/webkit2gtk-4.1 #19

Merge pull request #5 from gitbutlerapp/webkit2gtk-4.1

Merge pull request #5 from gitbutlerapp/webkit2gtk-4.1 #19

Workflow file for this run

name: Publish Docker image
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
push_to_registry:
name: Push Docker image to GitHub Packages
runs-on: ubuntu-latest
permissions: write-all
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Log in to GitHub Docker Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: .
push: ${{ github.event_name == 'push' }}
tags: ghcr.io/${{ github.repository }}:latest