Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/docker-multistage-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0
if: !inputs.has_refs
if: ${{ !inputs.has_refs }}

- name: "[SETUP] Checkout repository (ref: ${{ matrix.refs }})"
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ matrix.refs }}
if: inputs.has_refs
if: ${{ inputs.has_refs }}

- name: "[SETUP] Setup QEMU environment"
uses: docker/setup-qemu-action@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-multistage-configure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
# -----------------------------------------------------------------------------------------------
configure:
name: Configure
if: inputs.enabled
if: ${{ inputs.enabled }}
runs-on: ubuntu-latest

###
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-multistage-push-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,14 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0
if: !inputs.has_refs
if: ${{ !inputs.has_refs }}

- name: "[SETUP] Checkout repository (ref: ${{ matrix.refs }})"
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ matrix.refs }}
if: inputs.has_refs
if: ${{ inputs.has_refs }}

- name: "[SETUP] Setup QEMU environment"
uses: docker/setup-qemu-action@v1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker-multistage-push-manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
fail-fast: false
matrix:
include: ${{ fromJson(inputs.matrix) }}
if: inputs.can_deploy
if: ${{ inputs.can_deploy }}
steps:
# ------------------------------------------------------------
# Setup repository
Expand All @@ -58,14 +58,14 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0
if: !inputs.has_refs
if: ${{ !inputs.has_refs }}

- name: "[SETUP] Checkout repository (ref: ${{ matrix.refs }})"
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ matrix.refs }}
if: inputs.has_refs
if: ${{ inputs.has_refs }}

- name: "[SETUP] Setup QEMU environment"
uses: docker/setup-qemu-action@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-multistage-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0
if: !inputs.has_refs
if: ${{ !inputs.has_refs }}

- name: "[SETUP] Checkout repository (ref: ${{ matrix.refs }})"
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ matrix.refs }}
if: inputs.has_refs
if: ${{ inputs.has_refs }}

- name: "[SETUP] Setup QEMU environment"
uses: docker/setup-qemu-action@v1
Expand Down