mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2025-01-17 22:35:39 +00:00
On branch feat/godot-configurator
Changes to be committed: modified: .github/workflows/build-gdc.yml deleted: .github/workflows/go-simple.yml
This commit is contained in:
parent
98df12a8f9
commit
9e63b318b4
4
.github/workflows/build-gdc.yml
vendored
4
.github/workflows/build-gdc.yml
vendored
|
@ -40,10 +40,10 @@ jobs:
|
||||||
- name: Linux Build 🔧
|
- name: Linux Build 🔧
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
run: |
|
run: |
|
||||||
godot --headless -v --export-release "Linux/X11 64-bit" ./build/${EXPORT_NAME}-Linux-64bit/$EXPORT_NAME.x86_64
|
godot --headless -v --export-release "Linux/X11 64-bit" ~/$EXPORT_NAME.x86_64
|
||||||
- name: Give execute permission ☑️
|
- name: Give execute permission ☑️
|
||||||
run: |
|
run: |
|
||||||
chmod +x ./build/${EXPORT_NAME}-Linux-64bit/$EXPORT_NAME.x86_64
|
chmod +x ~/$EXPORT_NAME.x86_64
|
||||||
- name: Create tar.gz archive 🗜️
|
- name: Create tar.gz archive 🗜️
|
||||||
run: |
|
run: |
|
||||||
cd build
|
cd build
|
||||||
|
|
40
.github/workflows/go-simple.yml
vendored
40
.github/workflows/go-simple.yml
vendored
|
@ -1,40 +0,0 @@
|
||||||
name: Build Godot Project
|
|
||||||
|
|
||||||
on:
|
|
||||||
push: {}
|
|
||||||
pull_request: {}
|
|
||||||
|
|
||||||
env:
|
|
||||||
TAG: v0.006
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
Godot:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
platform: [linux]
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
lfs: true
|
|
||||||
- name: Build
|
|
||||||
id: build
|
|
||||||
uses: krynv/build-godot-action@v1.0.0
|
|
||||||
with:
|
|
||||||
name: gd-test
|
|
||||||
preset: ${{ matrix.platform }}
|
|
||||||
projectDir: "tools/configurator" # The project in the `test` directory will be built
|
|
||||||
debugMode: "true"
|
|
||||||
- name: Upload Artifact
|
|
||||||
uses: actions/upload-artifact@v2
|
|
||||||
with:
|
|
||||||
name: linux
|
|
||||||
path: ${{ github.workspace }}/${{ steps.build.outputs.build }}
|
|
||||||
- name: Upload Release Asset 🚀
|
|
||||||
uses: svenstaro/upload-release-action@v2
|
|
||||||
with:
|
|
||||||
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
file: linux.zip
|
|
||||||
tag: ${{env.TAG}}
|
|
||||||
overwrite: true
|
|
||||||
file_glob: false
|
|
Loading…
Reference in a new issue