mirror of
https://github.com/cmur2/dyndnsd.git
synced 2024-12-22 00:54:22 +01:00
ci: update to docker/build-push-action@v2
This commit is contained in:
parent
70ec21af94
commit
c675a347d1
21
.github/workflows/cd.yml
vendored
21
.github/workflows/cd.yml
vendored
@ -14,13 +14,22 @@ jobs:
|
|||||||
- name: Extract dyndnsd version from tag name
|
- name: Extract dyndnsd version from tag name
|
||||||
run: |
|
run: |
|
||||||
echo "DYNDNSD_VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV
|
echo "DYNDNSD_VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV
|
||||||
|
|
||||||
# https://github.com/marketplace/actions/build-and-push-docker-images
|
# https://github.com/marketplace/actions/build-and-push-docker-images
|
||||||
- name: Build and push Docker image for dyndnsd ${{ env.DYNDNSD_VERSION }}
|
- name: Set up Docker Buildx
|
||||||
uses: docker/build-push-action@v1
|
uses: docker/setup-buildx-action@v1
|
||||||
|
|
||||||
|
- name: Login to Docker Hub
|
||||||
|
uses: docker/login-action@v1
|
||||||
with:
|
with:
|
||||||
username: cmur2
|
username: cmur2
|
||||||
password: ${{ secrets.DOCKER_TOKEN }}
|
password: ${{ secrets.DOCKER_TOKEN }}
|
||||||
repository: cmur2/dyndnsd
|
|
||||||
path: docker
|
- name: Build and push Docker image for dyndnsd ${{ env.DYNDNSD_VERSION }}
|
||||||
build_args: DYNDNSD_VERSION=${{ env.DYNDNSD_VERSION }}
|
uses: docker/build-push-action@v2
|
||||||
tag_with_ref: true
|
with:
|
||||||
|
context: docker
|
||||||
|
build-args: |
|
||||||
|
DYNDNSD_VERSION=${{ env.DYNDNSD_VERSION }}
|
||||||
|
push: true
|
||||||
|
tags: cmur2/dyndnsd:v${{ env.DYNDNSD_VERSION }}
|
||||||
|
@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 3.3.2
|
||||||
|
|
||||||
|
OTHER:
|
||||||
|
|
||||||
|
- update to use `docker/build-push-action@v2` for releasing Docker image in GHA
|
||||||
|
|
||||||
## 3.3.1 (February 18, 2021)
|
## 3.3.1 (February 18, 2021)
|
||||||
|
|
||||||
OTHER:
|
OTHER:
|
||||||
|
Loading…
Reference in New Issue
Block a user