Browse Source

Update publish-docker.yml

use generic repo
Matthew R Kasun 3 years ago
parent
commit
44478f4e58
1 changed files with 5 additions and 8 deletions
  1. 5 8
      .github/workflows/publish-docker.yml

+ 5 - 8
.github/workflows/publish-docker.yml

@@ -6,10 +6,8 @@ on:
       tag:
         description: 'docker tag'
         required: true
-  pull_request:
-    branches:
-      - 'test'
-      - 'master'
+  release:
+    types: [published]
 
 jobs:
   docker:
@@ -31,8 +29,7 @@ jobs:
         uses: docker/setup-qemu-action@v1
       - name: Set up Docker Buildx
         uses: docker/setup-buildx-action@v1
-      - if: github.event_name != 'pull_request'
-        name: Login to DockerHub
+      - name: Login to DockerHub
         uses: docker/login-action@v1
         with:
           username: ${{ secrets.DOCKERHUB_USERNAME }}
@@ -42,5 +39,5 @@ jobs:
         with:
           context: .
           platforms: linux/amd64, linux/arm64
-          push: ${{ github.event_name != 'pull_request' }}
-          tags: gravitl/netmaker:${{ env.TAG }}
+          push: true
+          tags: ${{ github.respository }}:${{ env.TAG }}