mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-09 23:20:27 +00:00
Update CI
Signed-off-by: Khanh Ngo <khanh.ngo@taxfix.de>
This commit is contained in:
parent
ee9f568a8d
commit
4f8a547d47
52
.github/workflows/build-and-publish.yml
vendored
Normal file
52
.github/workflows/build-and-publish.yml
vendored
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- 'master'
|
||||||
|
tags:
|
||||||
|
- 'v*.*.*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-and-push-docker-image:
|
||||||
|
name: Build Docker image and push to repositories
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Docker meta
|
||||||
|
id: meta
|
||||||
|
uses: docker/metadata-action@v3
|
||||||
|
with:
|
||||||
|
images: |
|
||||||
|
ngoduykhanh/powerdns-admin
|
||||||
|
tags: |
|
||||||
|
type=semver,pattern={{version}}
|
||||||
|
type=semver,pattern={{major}}.{{minor}}
|
||||||
|
type=semver,pattern={{major}}
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
id: buildx
|
||||||
|
uses: docker/setup-buildx-action@v1
|
||||||
|
|
||||||
|
- name: Login to DockerHub
|
||||||
|
uses: docker/login-action@v1
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Build latest image
|
||||||
|
uses: docker/build-push-action@v2
|
||||||
|
if: github.ref == 'refs/heads/master'
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
push: true
|
||||||
|
tags: ngoduykhanh/powerdns-admin:latest
|
||||||
|
|
||||||
|
- name: Build release image
|
||||||
|
uses: docker/build-push-action@v2
|
||||||
|
if: ${{ github.event_name == 'create' && github.event.ref_type == 'tag' }}
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
push: ${{ github.event_name != 'pull_request' }}
|
||||||
|
tags: ${{ steps.meta.outputs.tags }}
|
@ -1,4 +0,0 @@
|
|||||||
include:
|
|
||||||
- project: 'powerdns-admin/ci'
|
|
||||||
ref: main
|
|
||||||
file: '.build-docker-images.yml'
|
|
Loading…
Reference in New Issue
Block a user