Dev Action upd
This commit is contained in:
parent
1e1f337ecd
commit
f7b9f87a09
1 changed files with 14 additions and 5 deletions
19
.github/workflows/dev-docker-io.yml
vendored
19
.github/workflows/dev-docker-io.yml
vendored
|
|
@ -16,11 +16,20 @@ jobs:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Build and Push Docker Image to docker.io
|
# - name: Build and Push Docker Image to docker.io
|
||||||
|
# uses: mr-smithers-excellent/docker-build-push@v6
|
||||||
|
# with:
|
||||||
|
# image: ${{ secrets.DOCKER_USERNAME }}/${{ env.IMAGE_NAME }}
|
||||||
|
# tags: ${{ env.TAGS }}
|
||||||
|
# registry: docker.io
|
||||||
|
# username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
|
# password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
|
- name: Build and Push Docker Image to Github
|
||||||
uses: mr-smithers-excellent/docker-build-push@v6
|
uses: mr-smithers-excellent/docker-build-push@v6
|
||||||
with:
|
with:
|
||||||
image: ${{ secrets.DOCKER_USERNAME }}/${{ env.IMAGE_NAME }}
|
image: ${{ env.IMAGE_NAME }}
|
||||||
tags: ${{ env.TAGS }}
|
tags: ${{ env.TAGS }}
|
||||||
registry: docker.io
|
registry: ghcr.io
|
||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
username: ${{ secrets.GHCR_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
password: ${{ secrets.GHCR_TOKEN }}
|
||||||
Loading…
Reference in a new issue