Add github workflow to deploy docker image

This commit is contained in:
Paul-Christian Volkmer 2023-09-03 09:48:58 +02:00
parent e6731f3e5b
commit 9333487fdc

28
.github/workflows/deploy.yml vendored Normal file
View File

@ -0,0 +1,28 @@
name: Deploy
on:
push:
branches: [ "master", "main" ]
pull_request:
branches: [ "master", "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to ghcr.io
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Execute image build and push
run: |
docker build -t ghcr.io/pcvolkmer/docker-wireguard-boringtun .
docker push ghcr.io/pcvolkmer/docker-wireguard-boringtun