Skip to content

Commit 4d846fa

Browse files
authored
Merge pull request #18 from devilbox/release-0.1.30
Fix conditions
2 parents 6a56ea5 + e40368e commit 4d846fa

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/docker-multistage-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,14 @@ jobs:
5656
uses: actions/checkout@v3
5757
with:
5858
fetch-depth: 0
59-
if: !inputs.has_refs
59+
if: ${{ !inputs.has_refs }}
6060

6161
- name: "[SETUP] Checkout repository (ref: ${{ matrix.refs }})"
6262
uses: actions/checkout@v3
6363
with:
6464
fetch-depth: 0
6565
ref: ${{ matrix.refs }}
66-
if: inputs.has_refs
66+
if: ${{ inputs.has_refs }}
6767

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

.github/workflows/docker-multistage-configure.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
# -----------------------------------------------------------------------------------------------
7979
configure:
8080
name: Configure
81-
if: inputs.enabled
81+
if: ${{ inputs.enabled }}
8282
runs-on: ubuntu-latest
8383

8484
###

.github/workflows/docker-multistage-push-image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@ jobs:
5858
uses: actions/checkout@v3
5959
with:
6060
fetch-depth: 0
61-
if: !inputs.has_refs
61+
if: ${{ !inputs.has_refs }}
6262

6363
- name: "[SETUP] Checkout repository (ref: ${{ matrix.refs }})"
6464
uses: actions/checkout@v3
6565
with:
6666
fetch-depth: 0
6767
ref: ${{ matrix.refs }}
68-
if: inputs.has_refs
68+
if: ${{ inputs.has_refs }}
6969

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

.github/workflows/docker-multistage-push-manifest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
fail-fast: false
5050
matrix:
5151
include: ${{ fromJson(inputs.matrix) }}
52-
if: inputs.can_deploy
52+
if: ${{ inputs.can_deploy }}
5353
steps:
5454
# ------------------------------------------------------------
5555
# Setup repository
@@ -58,14 +58,14 @@ jobs:
5858
uses: actions/checkout@v3
5959
with:
6060
fetch-depth: 0
61-
if: !inputs.has_refs
61+
if: ${{ !inputs.has_refs }}
6262

6363
- name: "[SETUP] Checkout repository (ref: ${{ matrix.refs }})"
6464
uses: actions/checkout@v3
6565
with:
6666
fetch-depth: 0
6767
ref: ${{ matrix.refs }}
68-
if: inputs.has_refs
68+
if: ${{ inputs.has_refs }}
6969

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

.github/workflows/docker-multistage-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ jobs:
4444
uses: actions/checkout@v3
4545
with:
4646
fetch-depth: 0
47-
if: !inputs.has_refs
47+
if: ${{ !inputs.has_refs }}
4848

4949
- name: "[SETUP] Checkout repository (ref: ${{ matrix.refs }})"
5050
uses: actions/checkout@v3
5151
with:
5252
fetch-depth: 0
5353
ref: ${{ matrix.refs }}
54-
if: inputs.has_refs
54+
if: ${{ inputs.has_refs }}
5555

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

0 commit comments

Comments
 (0)