We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de8e2aa commit 17ca16aCopy full SHA for 17ca16a
.github/workflows/deploy.yml
@@ -27,10 +27,14 @@ jobs:
27
username: ${{ secrets.DOCKER_ID }}
28
password: ${{ secrets.DOCKER_PWD }}
29
30
- - name: docker image bulid
+ - name: docker image build
31
run: |
32
docker build -t ${{ secrets.DOCKER_ID }}/${{ secrets.DOCKER_REPOSITORY }}:${{ secrets.DOCKER_TAG }} .
33
34
+ - name: docker hub push
35
+ run: |
36
+ docker push ${{ secrets.DOCKER_ID }}/${{ secrets.DOCKER_REPOSITORY }}:${{ secrets.DOCKER_TAG }}
37
+
38
- name: SSH into server and deploy
39
uses: appleboy/[email protected]
40
with:
0 commit comments