Skip to content

Commit e8f4057

Browse files
committed
[ci] 3
1 parent d8341e5 commit e8f4057

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/manual-build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ jobs:
4242
version: ${{ inputs.version }}
4343

4444
tests:
45-
if: ${{ inputs.run_tests == 'true' }}
45+
if: ${{ inputs.run_tests }}
4646
needs: [ datagen ]
4747
uses: ./.github/workflows/_run-gametests.yml
4848
secrets: inherit
4949
with:
5050
version: ${{ inputs.version }}
5151

5252
build:
53-
if: ${{ inputs.release_packages == 'false' }}
53+
if: ${{ inputs.release_packages }}
5454
name: JAR
5555
needs: [ tests ]
5656
uses: ./.github/workflows/_make-release-jar.yml
@@ -59,15 +59,15 @@ jobs:
5959
version: ${{ inputs.version }}
6060

6161
publish:
62-
if: ${{ inputs.release_packages == 'true' }}
62+
if: ${{ inputs.release_packages }}
6363
needs: [ tests ]
6464
uses: ./.github/workflows/_publish.yml
6565
secrets: inherit
6666
with:
6767
version: ${{ inputs.version }}
6868

6969
create-tag:
70-
if: ${{ inputs.add_version_tag == 'true' }}
70+
if: ${{ inputs.add_version_tag }}
7171
name: Create tag
7272
needs: [ publish ]
7373
runs-on: ubuntu-latest
@@ -84,14 +84,14 @@ jobs:
8484
})
8585
8686
announce:
87-
if: ${{ inputs.announce == 'true' }}
87+
if: ${{ inputs.announce }}
8888
name: Discord Announcement
8989
needs: [ publish ]
9090
uses: ./.github/workflows/_announce-latest-build.yml
9191
secrets: inherit
9292

9393
release-cf:
94-
if: ${{ inputs.release_cf == 'true' }}
94+
if: ${{ inputs.release_cf }}
9595
name: Release Alpha on CurseForge
9696
needs: [ publish ]
9797
uses: ./.github/workflows/_release-cf-alpha.yml

0 commit comments

Comments
 (0)