commit
75a383f259
2 changed files with 33 additions and 0 deletions
25
.github/actions/build.yaml
vendored
Normal file
25
.github/actions/build.yaml
vendored
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
name: Build and publish to Docker Hub (tags only)
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- *
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: Converge
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- name: Docker login
|
||||||
|
run: |
|
||||||
|
echo "${{ secrets.DOCKER_PASS }}" | docker login -u ${{ secrets.DOCKER_PASS }} --password-stdin
|
||||||
|
- name: Converge
|
||||||
|
uses: werf/actions/converge@master
|
||||||
|
with:
|
||||||
|
group: 1.1
|
||||||
|
channel: beta
|
||||||
|
env:
|
||||||
|
WERF_STAGES_STORAGE=":local"
|
||||||
|
WERF_REPO: ${{ secrets.REGISTRY }}/${{ github.repository }}
|
8
werf.yaml
Normal file
8
werf.yaml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
project: openvpn-admin
|
||||||
|
configVersion: 1
|
||||||
|
---
|
||||||
|
image: openvpn-admin
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
---
|
||||||
|
image: openvpn
|
||||||
|
dockerfile: Dockerfile-openvpn
|
Loading…
Reference in a new issue