Skip to content

Commit

Permalink
fix again
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoinky3000 committed Jun 20, 2024
1 parent 43181a9 commit dd97ba5
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/build-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,15 @@ jobs:
uses: ./.github/workflows/cuda.yml
with:
CHANNEL: dev-
secrets:
DOCKER_USER: ${{ secrets.DOCKER_USER }}
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}

rocm:
name: Build AMD ROCm Image
uses: ./.github/workflows/rocm.yml
with:
CHANNEL: dev-
CHANNEL: dev-
secrets:
DOCKER_USER: ${{ secrets.DOCKER_USER }}
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
8 changes: 7 additions & 1 deletion .github/workflows/build-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,17 @@ jobs:
with:
CURRENT_TAG: ${{needs.checkTag.outputs.current}}
PREVIOUS_TAG: ${{needs.checkTag.outputs.previous}}
secrets:
DOCKER_USER: ${{ secrets.DOCKER_USER }}
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}

rocm:
needs: [checkTag]
name: Build AMD ROCm Image
uses: ./.github/workflows/rocm.yml
with:
CURRENT_TAG: ${{needs.checkTag.outputs.current}}
PREVIOUS_TAG: ${{needs.checkTag.outputs.previous}}
PREVIOUS_TAG: ${{needs.checkTag.outputs.previous}}
secrets:
DOCKER_USER: ${{ secrets.DOCKER_USER }}
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
5 changes: 5 additions & 0 deletions .github/workflows/cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ on:
required: false
type: string
default: "0.0.0"
secrets:
DOCKER_USER:
required: true
DOCKER_TOKEN:
required: true

jobs:
build:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/rocm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ on:
required: false
type: string
default: "0.0.0"
secrets:
DOCKER_USER:
required: true
DOCKER_TOKEN:
required: true

jobs:
build:
Expand Down

0 comments on commit dd97ba5

Please sign in to comment.