ovpn-admin/.github/workflows/publish-latest.yaml

31 lines
902 B
YAML
Raw Normal View History

name: Build and publish latest tag to Docker Hub (releases only)
on:
2021-03-09 04:55:54 -05:00
release:
types: [created]
2021-03-05 04:07:08 -05:00
jobs:
build:
name: build latest images for release
2021-03-05 04:07:08 -05:00
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
2021-03-09 10:14:25 -05:00
- name: Push openvpn image to Docker Hub
uses: docker/build-push-action@v1
2021-03-05 04:07:08 -05:00
with:
2021-03-09 10:28:56 -05:00
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASS }}
2021-03-17 05:05:37 -04:00
repository: flant/ovpn-admin
2021-03-09 10:28:56 -05:00
tags: openvpn-latest
dockerfile: Dockerfile.openvpn
2021-03-17 05:05:37 -04:00
- name: Push ovpn-admin image to Docker Hub
2021-03-09 10:14:25 -05:00
uses: docker/build-push-action@v1
with:
2021-03-09 10:28:56 -05:00
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASS }}
2021-03-17 05:05:37 -04:00
repository: flant/ovpn-admin
2021-03-09 10:28:56 -05:00
tags: latest
dockerfile: Dockerfile