mirror of
https://github.com/amnezia-vpn/amneziawg-go.git
synced 2025-07-29 08:12:50 +02:00
Create build-docker-image.yml
Signed-off-by: AlexanderGalkov <143902290+AlexanderGalkov@users.noreply.github.com>
This commit is contained in:
parent
7155d20913
commit
4f5ce32289
1 changed files with 23 additions and 0 deletions
23
.github/workflows/build-docker-image.yml
vendored
Normal file
23
.github/workflows/build-docker-image.yml
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
name: build-docker-image
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'v[0-9]+.[0-9]+.[0-9]+'
|
||||
|
||||
env:
|
||||
APP: amneziawg-backend
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
name: build
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
Loading…
Add table
Reference in a new issue