From 5472974379401517f73f0b44e6d336026fed0a46 Mon Sep 17 00:00:00 2001 From: Josh Tynjala Date: Fri, 17 Jan 2025 10:13:22 -0800 Subject: [PATCH] actions: skip html5-samples variables on Haxe 3 --- .github/workflows/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 11e6bc79d..0ff85206d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -794,6 +794,7 @@ jobs: lime build HelloWorld html5 -release -verbose -nocolor - name: Build HelloWorld variants + if: ${{ matrix.haxe-version != '3.4.7' }} run: | lime build HelloWorld html5 -clean -release -verbose -nocolor --haxelib=genes lime build HelloWorld html5 -clean -release -verbose -nocolor -minify -terser @@ -804,6 +805,7 @@ jobs: lime build SimpleImage html5 -release -verbose -nocolor - name: Build SimpleImage variants + if: ${{ matrix.haxe-version != '3.4.7' }} run: | lime build SimpleImage html5 -clean -release -verbose -nocolor --haxelib=genes lime build SimpleImage html5 -clean -release -verbose -nocolor -minify -terser @@ -814,6 +816,7 @@ jobs: lime build SimpleAudio html5 -release -verbose -nocolor - name: Build SimpleAudio variants + if: ${{ matrix.haxe-version != '3.4.7' }} run: | lime build SimpleAudio html5 -clean -release -verbose -nocolor --haxelib=genes lime build SimpleAudio html5 -clean -release -verbose -nocolor -minify -terser