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 a69fd87 commit 9560209
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 @@ -45,7 +45,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 @@ -54,7 +54,7 @@ jobs:
uses: docker/build-push-action@v5
with:
context: .
push: ${{inputs.push}}
push: false
file: ./Dockerfile.dev
tags: |
mstorsjo/llvm-mingw:test-dev
Expand Down Expand Up @@ -92,7 +92,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 @@ -103,7 +103,7 @@ jobs:
with:
context: .
platforms: ${{matrix.platforms}}
push: ${{inputs.push}}
push: false
file: ./${{matrix.file}}
outputs: |
type=image,name=mstorsjo/llvm-mingw,push-by-digest=true,name-canonical=true
Expand All @@ -119,7 +119,7 @@ jobs:
docker-create:
needs: [docker-build, prepare]
runs-on: ubuntu-latest
if: ${{inputs.push}}
if: false
steps:
- uses: cloudposse/github-action-matrix-outputs-read@main
id: read
Expand Down

0 comments on commit 9560209

Please sign in to comment.