From 6d7f357dbbf1de89371273b8795816339e02ae74 Mon Sep 17 00:00:00 2001 From: Iggy Date: Mon, 26 Aug 2024 15:55:19 -0300 Subject: [PATCH] Disable android build Add automated Woodpecker run --- .woodpecker/my-first-workflow.yaml | 15 +++++++++++++++ renconstruct.toml | 4 ++-- 2 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 .woodpecker/my-first-workflow.yaml diff --git a/.woodpecker/my-first-workflow.yaml b/.woodpecker/my-first-workflow.yaml new file mode 100644 index 0000000..faae0f8 --- /dev/null +++ b/.woodpecker/my-first-workflow.yaml @@ -0,0 +1,15 @@ +when: + - event: push + branch: master + +steps: + - name: build + image: debian + commands: + - echo "This is the build step" + - echo "binary-data-123" > executable + - name: a-test-step + image: golang:1.16 + commands: + - echo "Testing ..." + - ./executable \ No newline at end of file diff --git a/renconstruct.toml b/renconstruct.toml index e3646c4..a64b90f 100644 --- a/renconstruct.toml +++ b/renconstruct.toml @@ -4,7 +4,7 @@ ver = "8.2.3" [tasks.keystore] # required if matching task is enabled - enabled = true + enabled = false type="keystore" priorities = { pre_build = 0 } # the priority that determines the orders tasks will run in, defaults to 0 on_builds = ["android_apk", "android_aab"] # builds this task should run for, defaults to all android builds @@ -20,7 +20,7 @@ #web = false # web steam = true # steam market = true # multiple markets (i.e. itch.io) - android_apk = true # Android Universal APK + android_apk = false # Android Universal APK #android_aab = false # Android Play Store Bundle [options]