Browse Source

feat: publish to dockerhub in github CI simultaneously

master
zhayujie 1 year ago
parent
commit
d0662683f9
1 changed files with 9 additions and 1 deletions
  1. +9
    -1
      .github/workflows/deploy-image.yml

+ 9
- 1
.github/workflows/deploy-image.yml View File

@@ -28,6 +28,12 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Log in to the Container registry
uses: docker/login-action@v2
with:
@@ -39,7 +45,9 @@ jobs:
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
images: |
${{ env.IMAGE_NAME }}
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker image
uses: docker/build-push-action@v3


Loading…
Cancel
Save