We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f30202a commit aa9a28aCopy full SHA for aa9a28a
1 file changed
.github/workflows/release.yml
@@ -80,13 +80,18 @@ jobs:
80
- run: |
81
mv dstack-sshproxy-* dstack-sshproxy
82
working-directory: build
83
+ - name: Login to Docker Hub
84
+ uses: docker/login-action@v4
85
+ with:
86
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
87
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
88
- name: Set up Docker Buildx
89
uses: docker/setup-buildx-action@v4
90
- name: Build and push
91
uses: docker/build-push-action@v7
92
with:
93
context: .
- push: false
94
+ push: true
95
tags: |
96
dstackai/sshproxy:${{ needs.set-version.outputs.version }}
97
${{ case(fromJSON(needs.set-version.outputs.latest), 'dstackai/sshproxy:latest', '') }}
0 commit comments