Disable android build

Add automated Woodpecker run
This commit is contained in:
Iggy 2024-08-26 15:55:19 -03:00
parent 60f8efc6df
commit 6d7f357dbb
2 changed files with 17 additions and 2 deletions

View file

@ -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

View file

@ -4,7 +4,7 @@
ver = "8.2.3" ver = "8.2.3"
[tasks.keystore] # required if matching task is enabled [tasks.keystore] # required if matching task is enabled
enabled = true enabled = false
type="keystore" type="keystore"
priorities = { pre_build = 0 } # the priority that determines the orders tasks will run in, defaults to 0 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 on_builds = ["android_apk", "android_aab"] # builds this task should run for, defaults to all android builds
@ -20,7 +20,7 @@
#web = false # web #web = false # web
steam = true # steam steam = true # steam
market = true # multiple markets (i.e. itch.io) 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 #android_aab = false # Android Play Store Bundle
[options] [options]