28 lines
785 B
YAML
28 lines
785 B
YAML
|
name: Publish Docker image
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ master ]
|
||
|
jobs:
|
||
|
push_to_registry:
|
||
|
name: Push Docker image to Docker Hub
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Check out the repo
|
||
|
uses: actions/checkout@v2
|
||
|
- name: Set up Docker Buildx
|
||
|
uses: docker/setup-buildx-action@v1
|
||
|
- name: Login to DockerHub
|
||
|
uses: docker/login-action@v1
|
||
|
with:
|
||
|
registry: ghcr.io
|
||
|
username: ${{ github.repository_owner }}
|
||
|
password: ${{ secrets.CR_PAT }}
|
||
|
- name: Build and push
|
||
|
id: docker_build
|
||
|
uses: docker/build-push-action@v2
|
||
|
with:
|
||
|
push: true
|
||
|
tags: ghcr.io/erebe/wstunnel:latest
|
||
|
- name: Image digest
|
||
|
run: echo ${{ steps.docker_build.outputs.digest }}
|