Skip to content

Commit fa649b9

Browse files
fix the workflow
because i found that if the release workflow was called then this would trigger with the 'commit' and 'officialBuild' flags, which is contradictory
1 parent 35b68ed commit fa649b9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ on:
1717
buildFlags:
1818
required: false
1919
type: string
20+
default: 'commit' # defaults to Commit, changes to officialBuild on release builds
2021

2122
# Allows you to run this workflow manually from the Actions tab
2223
workflow_dispatch:
@@ -61,7 +62,7 @@ jobs:
6162
haxe compile.hxml
6263
cd ../..
6364
- name: Compile
64-
run: haxelib run lime build linux -D commit -D ${{ inputs.buildFlags }}
65+
run: haxelib run lime build linux -D ${{ inputs.buildFlags }}
6566
- name: Clear Previous Cache
6667
uses: actions/github-script@main
6768
with:

0 commit comments

Comments
 (0)