1
0
Fork 0
mirror of synced 2024-05-29 05:21:13 -04:00
ovpn-admin/.github/workflows/build.yaml
Workflow config file is invalid. Please check your config file: yaml: line 25: mapping values are not allowed in this context
2021-03-09 12:55:54 +03:00

26 lines
664 B
YAML

name: Build and publish to Docker Hub (releases only)
on:
release:
types: [created]
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 }}