mirror of
https://github.com/EvilFreelancer/docker-routeros.git
synced 2025-08-19 00:39:37 +02:00
Add a github action that automatically upload tag to docker.
This commit is contained in:
parent
ec16940315
commit
75ebc85d1e
1 changed files with 34 additions and 0 deletions
34
.github/workflows/cd.yml
vendored
Normal file
34
.github/workflows/cd.yml
vendored
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
name: "Build docker image and push to DockerHub when a tag is pushed"
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- "*"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: "Build images"
|
||||||
|
runs-on: "ubuntu-latest"
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Docker metadata from Git
|
||||||
|
id: meta
|
||||||
|
uses: docker/metadata-action@v5
|
||||||
|
with:
|
||||||
|
images: evilfreelancer/docker-routeros
|
||||||
|
- name: Login to DockerHub
|
||||||
|
if: ${{ !env.ACT }}
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
- name: Build with Docker
|
||||||
|
uses: docker/build-push-action@v5
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
push: ${{ !env.ACT }}
|
||||||
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue