Skip to content

Commit

Permalink
WIP: github: docker: Hardcode other inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
mstorsjo committed Feb 27, 2024
1 parent a78df80 commit 11c2c93
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Log in to Docker Hub
if: ${{inputs.login}}
if: false
uses: docker/login-action@v3
with:
username: ${{secrets.DOCKER_USERNAME}}
Expand All @@ -60,7 +60,7 @@ jobs:
uses: docker/build-push-action@v5
with:
context: .
push: ${{inputs.push}}
push: false
file: ./${{matrix.file}}
tags: |
mstorsjo/llvm-mingw:${{matrix.maintag}}
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Docker Hub
if: ${{inputs.login}}
if: false
uses: docker/login-action@v3
with:
username: ${{secrets.DOCKER_USERNAME}}
Expand All @@ -100,9 +100,9 @@ jobs:
with:
context: .
platforms: linux/arm64
push: ${{inputs.push}}
push: false
file: ./Dockerfile.toolchain
load: ${{!inputs.push}}
load: true
tags: |
mstorsjo/llvm-mingw:test
mstorsjo/llvm-mingw:test-${{needs.prepare.outputs.TAG}}
Expand Down

0 comments on commit 11c2c93

Please sign in to comment.