From 68c30f6f323ee495af9f3423b017608228e4b484 Mon Sep 17 00:00:00 2001 From: atavism Date: Wed, 30 Oct 2024 10:56:07 -0700 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 3 +-- Makefile | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a04e86791..c7e188963 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -171,8 +171,6 @@ jobs: - name: Build Lantern Library shell: bash run: | - touch app.env - mkdir -p "build/windows/${{inputs.windows-arch}}/runner/Release" make ${{matrix.platform}} - name: Activate plugins @@ -200,6 +198,7 @@ jobs: if: matrix.platform == 'windows' shell: bash run: | + mkdir -p "build/windows/${{inputs.windows-arch}}/runner/Release" mv liblantern.dll "build/windows/${{inputs.windows-arch}}/runner/Release" - name: Extract app version from pubspec.yaml diff --git a/Makefile b/Makefile index b26ff2ac0..61808186e 100644 --- a/Makefile +++ b/Makefile @@ -539,7 +539,6 @@ $(WINDOWS64_LIB_NAME): export EXTRA_LDFLAGS += $(WINDOWS64_LIB_NAME): export GO_BUILD_FLAGS += -a -buildmode=c-shared $(WINDOWS64_LIB_NAME): export BUILD_RACE = $(WINDOWS64_LIB_NAME): desktop-lib -$(WINDOWS64_LIB_NAME): mkdir -p build/windows/x64/runner/Release ## APP_VERSION is the version defined in pubspec.yaml APP_VERSION := $(shell grep '^version:' pubspec.yaml | sed 's/version: //')