diff --git a/.github/workflows/publish-docker-cpu.yml b/.github/workflows/publish-docker-cpu.yml index ffe9e53..df9bf01 100644 --- a/.github/workflows/publish-docker-cpu.yml +++ b/.github/workflows/publish-docker-cpu.yml @@ -24,7 +24,7 @@ jobs: with: registry: ghcr.io username: ${{ github.actor }} - password: ${{ secrets.PACKAGE_TOKEN }} + password: ${{ secrets.GITHUB_TOKEN }} - name: Available platforms run: echo ${{ steps.buildx.outputs.platforms }} @@ -45,10 +45,11 @@ jobs: - name: Build container image uses: docker/build-push-action@v5 with: + no-cache: true push: true context: . platforms: linux/amd64,linux/arm64 file: Dockerfile - tags: ghcr.io/${{ github.repository }}-cpu:${{ env.VERSION }} + tags: ghcr.io/${{ github.repository }}:${{ env.VERSION }}-cpu build-args: | BUILD_TYPE=cpu diff --git a/.github/workflows/publish-docker-cuda.yml b/.github/workflows/publish-docker-cuda.yml index 8dcda6b..a950d7e 100644 --- a/.github/workflows/publish-docker-cuda.yml +++ b/.github/workflows/publish-docker-cuda.yml @@ -20,7 +20,7 @@ jobs: with: registry: ghcr.io username: ${{ github.actor }} - password: ${{ secrets.PACKAGE_TOKEN }} + password: ${{ secrets.GITHUB_TOKEN }} - name: Available platforms run: echo ${{ steps.buildx.outputs.platforms }} @@ -41,10 +41,11 @@ jobs: - name: Build container image uses: docker/build-push-action@v5 with: + no-cache: true push: true context: . platforms: linux/amd64 file: Dockerfile - tags: ghcr.io/${{ github.repository }}-cuda:${{ env.VERSION }} + tags: ghcr.io/${{ github.repository }}:${{ env.VERSION }}-cuda build-args: | BUILD_TYPE=cuda diff --git a/.github/workflows/publish-docker-rocm.yml b/.github/workflows/publish-docker-rocm.yml index b2b1792..6c57990 100644 --- a/.github/workflows/publish-docker-rocm.yml +++ b/.github/workflows/publish-docker-rocm.yml @@ -20,7 +20,7 @@ jobs: with: registry: ghcr.io username: ${{ github.actor }} - password: ${{ secrets.PACKAGE_TOKEN }} + password: ${{ secrets.GITHUB_TOKEN }} - name: Available platforms run: echo ${{ steps.buildx.outputs.platforms }} @@ -41,10 +41,11 @@ jobs: - name: Build container image uses: docker/build-push-action@v5 with: + no-cache: true push: true context: . platforms: linux/amd64 file: Dockerfile - tags: ghcr.io/${{ github.repository }}-rocm:${{ env.VERSION }} + tags: ghcr.io/${{ github.repository }}:${{ env.VERSION }}-rocm build-args: | BUILD_TYPE=rocm