Skip to content

Commit 30acf0b

Browse files
committed
Update GH workflow to push images to org
1 parent 54f13bb commit 30acf0b

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/gateway-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
with:
5252
context: gateway/dstack-app/builder
5353
push: true
54-
tags: ${{ vars.DOCKERHUB_USERNAME }}/gateway:${{ env.VERSION }}
54+
tags: ${{ vars.DOCKERHUB_ORG }}/dstack-gateway:${{ env.VERSION }}
5555
platforms: linux/amd64
5656
provenance: false
5757
build-args: |
@@ -61,7 +61,7 @@ jobs:
6161
- name: Generate artifact attestation
6262
uses: actions/attest-build-provenance@v1
6363
with:
64-
subject-name: "docker.io/${{ vars.DOCKERHUB_USERNAME }}/gateway"
64+
subject-name: "docker.io/${{ vars.DOCKERHUB_ORG }}/dstack-gateway"
6565
subject-digest: ${{ steps.build-and-push.outputs.digest }}
6666
push-to-registry: true
6767

@@ -72,7 +72,7 @@ jobs:
7272
body: |
7373
## Docker Image Information
7474
75-
**Image**: `docker.io/${{ vars.DOCKERHUB_USERNAME }}/gateway:${{ env.VERSION }}`
75+
**Image**: `docker.io/${{ vars.DOCKERHUB_ORG }}/dstack-gateway:${{ env.VERSION }}`
7676
7777
**Digest (SHA256)**: `${{ steps.build-and-push.outputs.digest }}`
7878

.github/workflows/kms-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
with:
5555
context: kms/dstack-app/builder
5656
push: true
57-
tags: ${{ vars.DOCKERHUB_USERNAME }}/kms:${{ env.VERSION }}
57+
tags: ${{ vars.DOCKERHUB_ORG }}/dstack-kms:${{ env.VERSION }}
5858
platforms: linux/amd64
5959
provenance: false
6060
build-args: |
@@ -65,7 +65,7 @@ jobs:
6565
- name: Generate artifact attestation
6666
uses: actions/attest-build-provenance@v1
6767
with:
68-
subject-name: "docker.io/${{ vars.DOCKERHUB_USERNAME }}/kms"
68+
subject-name: "docker.io/${{ vars.DOCKERHUB_ORG }}/dstack-kms"
6969
subject-digest: ${{ steps.build-and-push.outputs.digest }}
7070
push-to-registry: true
7171

@@ -92,7 +92,7 @@ jobs:
9292
body: |
9393
## Docker Image Information
9494
95-
**Image**: `docker.io/${{ vars.DOCKERHUB_USERNAME }}/kms:${{ env.VERSION }}`
95+
**Image**: `docker.io/${{ vars.DOCKERHUB_ORG }}/dstack-kms:${{ env.VERSION }}`
9696
9797
**Digest (SHA256)**: `${{ steps.build-and-push.outputs.digest }}`
9898

.github/workflows/verifier-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
context: verifier
5252
file: verifier/builder/Dockerfile
5353
push: true
54-
tags: ${{ vars.DOCKERHUB_USERNAME }}/dstack-verifier:${{ env.VERSION }}
54+
tags: ${{ vars.DOCKERHUB_ORG }}/dstack-verifier:${{ env.VERSION }}
5555
platforms: linux/amd64
5656
provenance: false
5757
build-args: |
@@ -62,7 +62,7 @@ jobs:
6262
- name: Generate artifact attestation
6363
uses: actions/attest-build-provenance@v1
6464
with:
65-
subject-name: "docker.io/${{ vars.DOCKERHUB_USERNAME }}/dstack-verifier"
65+
subject-name: "docker.io/${{ vars.DOCKERHUB_ORG }}/dstack-verifier"
6666
subject-digest: ${{ steps.build-and-push.outputs.digest }}
6767
push-to-registry: true
6868

@@ -73,7 +73,7 @@ jobs:
7373
body: |
7474
## Docker Image Information
7575
76-
**Image**: `docker.io/${{ vars.DOCKERHUB_USERNAME }}/dstack-verifier:${{ env.VERSION }}`
76+
**Image**: `docker.io/${{ vars.DOCKERHUB_ORG }}/dstack-verifier:${{ env.VERSION }}`
7777
7878
**Digest (SHA256)**: `${{ steps.build-and-push.outputs.digest }}`
7979

verifier/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ DSTACK_VERIFIER_PORT=8080 cargo run --bin dstack-verifier
102102
```yaml
103103
services:
104104
dstack-verifier:
105-
image: kvin/dstack-verifier:latest
105+
image: dstacktee/dstack-verifier:latest
106106
ports:
107107
- "8080:8080"
108108
restart: unless-stopped

0 commit comments

Comments
 (0)