mirror of
https://github.com/bryangerlach/rdgen.git
synced 2025-11-29 00:23:27 +00:00
changed docker-build action
This commit is contained in:
30
.github/workflows/docker-build.yml
vendored
30
.github/workflows/docker-build.yml
vendored
@@ -2,6 +2,9 @@ name: update docker image
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
branches:
|
||||||
|
- dev
|
||||||
|
- master
|
||||||
tags:
|
tags:
|
||||||
- 'v*.*.*'
|
- 'v*.*.*'
|
||||||
|
|
||||||
@@ -9,18 +12,31 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
-
|
- name: set docker image tag
|
||||||
name: Login to Docker Hub
|
run: |
|
||||||
|
echo "CREATE_IMAGE=true" >> $env:GITHUB_ENV
|
||||||
|
if [[ "${{ github.ref }}" == "refs/heads/dev" ]]; then
|
||||||
|
echo "IMAGE_TAG=dev" >> $env:GITHUB_ENV
|
||||||
|
elif [[ "${{ github.ref_type }}" == "tag" ]]; then
|
||||||
|
echo "IMAGE_TAG=${{ github.ref_name }}"
|
||||||
|
else
|
||||||
|
echo "CREATE_IMAGE=false" >> $env:GITHUB_ENV
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Login to Docker Hub
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
|
if: env.CREATE_IMAGE == 'true'
|
||||||
with:
|
with:
|
||||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
-
|
|
||||||
name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v3
|
||||||
-
|
if: env.CREATE_IMAGE == 'true'
|
||||||
name: Build and push
|
|
||||||
|
- name: Build and push
|
||||||
uses: docker/build-push-action@v6
|
uses: docker/build-push-action@v6
|
||||||
|
if: env.CREATE_IMAGE == 'true'
|
||||||
with:
|
with:
|
||||||
push: true
|
push: true
|
||||||
tags: ${{ vars.DOCKERHUB_USERNAME }}/rdgen:latest
|
tags: ${{ vars.DOCKERHUB_USERNAME }}/${{ github.repository }}:${{ env.IMAGE_TAG }}
|
||||||
|
|||||||
Reference in New Issue
Block a user