Skip to content

Commit e8d93f4

Browse files
dittopsclaude
andcommitted
Use Docker Hub (budstudio/taskgraph) for Docker image
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent bdf3369 commit e8d93f4

2 files changed

Lines changed: 6 additions & 7 deletions

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ permissions:
1111

1212
env:
1313
CARGO_TERM_COLOR: always
14-
REGISTRY: ghcr.io
15-
IMAGE_NAME: ${{ github.repository }}
14+
IMAGE_NAME: budstudio/taskgraph
1615

1716
jobs:
1817
build:
@@ -104,18 +103,17 @@ jobs:
104103
- name: Set up QEMU
105104
uses: docker/setup-qemu-action@v3
106105

107-
- name: Log in to GHCR
106+
- name: Log in to Docker Hub
108107
uses: docker/login-action@v3
109108
with:
110-
registry: ${{ env.REGISTRY }}
111-
username: ${{ github.actor }}
112-
password: ${{ secrets.GITHUB_TOKEN }}
109+
username: ${{ secrets.DOCKERHUB_USERNAME }}
110+
password: ${{ secrets.DOCKERHUB_TOKEN }}
113111

114112
- name: Extract metadata
115113
id: meta
116114
uses: docker/metadata-action@v5
117115
with:
118-
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
116+
images: ${{ env.IMAGE_NAME }}
119117
tags: |
120118
type=semver,pattern={{version}}
121119
type=semver,pattern={{major}}.{{minor}}

docker-compose.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
services:
22
taskgraph:
3+
image: budstudio/taskgraph:latest
34
build: .
45
ports:
56
- "8484:8484"

0 commit comments

Comments
 (0)