From 59a3860e90758cc48ef053b272fb2b5657f87a93 Mon Sep 17 00:00:00 2001 From: vaporvee <80621863+cmod31@users.noreply.github.com> Date: Mon, 14 Nov 2022 10:36:55 +0100 Subject: [PATCH 1/4] github actions build file --- .github/workflows/godot-ci.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/godot-ci.yml diff --git a/.github/workflows/godot-ci.yml b/.github/workflows/godot-ci.yml new file mode 100644 index 0000000..5110e9a --- /dev/null +++ b/.github/workflows/godot-ci.yml @@ -0,0 +1,32 @@ +name: "godot-ci export" +on: push + +env: + GODOT_VERSION: mono-3.3.4 + EXPORT_NAME: RPG-Test + +jobs: + export-windows: + name: Windows Export + runs-on: ubuntu-20.04 + container: + image: barichello/godot-ci:mono-3.3.4 + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + lfs: true + - name: Setup + run: | + mkdir -v -p ~/.local/share/godot/templates + mv /root/.local/share/godot/templates/${GODOT_VERSION}.stable ~/.local/share/godot/templates/${GODOT_VERSION}.stable + - name: Windows Build + run: | + mkdir -v -p build/windows + cd $EXPORT_NAME + godot -v --export "Windows Desktop" ../build/windows/$EXPORT_NAME.exe + - name: Upload Artifact + uses: actions/upload-artifact@v1 + with: + name: windows + path: build/windows From 9a41b3786610118c7c7aaa3111d5b8e203be279d Mon Sep 17 00:00:00 2001 From: vaporvee <80621863+cmod31@users.noreply.github.com> Date: Mon, 14 Nov 2022 10:42:26 +0100 Subject: [PATCH 2/4] github actions fix --- .github/workflows/godot-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/godot-ci.yml b/.github/workflows/godot-ci.yml index 5110e9a..4b670fe 100644 --- a/.github/workflows/godot-ci.yml +++ b/.github/workflows/godot-ci.yml @@ -2,7 +2,7 @@ name: "godot-ci export" on: push env: - GODOT_VERSION: mono-3.3.4 + GODOT_VERSION: 3.3.4 EXPORT_NAME: RPG-Test jobs: From d488012190864192287a840ae39e410894e20352 Mon Sep 17 00:00:00 2001 From: vaporvee <80621863+cmod31@users.noreply.github.com> Date: Mon, 14 Nov 2022 10:47:05 +0100 Subject: [PATCH 3/4] try fix actions part 2 --- .github/workflows/godot-ci.yml | 34 ++-------------------------------- 1 file changed, 2 insertions(+), 32 deletions(-) diff --git a/.github/workflows/godot-ci.yml b/.github/workflows/godot-ci.yml index 4b670fe..10416df 100644 --- a/.github/workflows/godot-ci.yml +++ b/.github/workflows/godot-ci.yml @@ -1,32 +1,2 @@ -name: "godot-ci export" -on: push - -env: - GODOT_VERSION: 3.3.4 - EXPORT_NAME: RPG-Test - -jobs: - export-windows: - name: Windows Export - runs-on: ubuntu-20.04 - container: - image: barichello/godot-ci:mono-3.3.4 - steps: - - name: Checkout - uses: actions/checkout@v2 - with: - lfs: true - - name: Setup - run: | - mkdir -v -p ~/.local/share/godot/templates - mv /root/.local/share/godot/templates/${GODOT_VERSION}.stable ~/.local/share/godot/templates/${GODOT_VERSION}.stable - - name: Windows Build - run: | - mkdir -v -p build/windows - cd $EXPORT_NAME - godot -v --export "Windows Desktop" ../build/windows/$EXPORT_NAME.exe - - name: Upload Artifact - uses: actions/upload-artifact@v1 - with: - name: windows - path: build/windows +- name: godot-ci + uses: abarichello/godot-ci@mono-3.4.2 From d948c829fc8f891f29d55450d35575d5e5c3228f Mon Sep 17 00:00:00 2001 From: vaporvee <80621863+cmod31@users.noreply.github.com> Date: Mon, 14 Nov 2022 10:48:10 +0100 Subject: [PATCH 4/4] Delete godot-ci.yml --- .github/workflows/godot-ci.yml | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 .github/workflows/godot-ci.yml diff --git a/.github/workflows/godot-ci.yml b/.github/workflows/godot-ci.yml deleted file mode 100644 index 10416df..0000000 --- a/.github/workflows/godot-ci.yml +++ /dev/null @@ -1,2 +0,0 @@ -- name: godot-ci - uses: abarichello/godot-ci@mono-3.4.2