test runner v2
Some checks failed
/ Export Game (push) Failing after 25s

This commit is contained in:
Lucas 2024-07-28 15:02:40 +02:00
parent 721f2e8297
commit ca9f650ea0

View file

@ -4,36 +4,37 @@ on:
- main - main
- release - release
jobs: jobs:
Godot: # job id, can be anything
export_game:
# Always use ubuntu-latest for this action
runs-on: linux_amd64 runs-on: linux_amd64
strategy: # Add permission for release creation. Can be made narrower according to your needs
matrix: permissions: write-all
platform: [linux, windows] # Job name, can be anything
name: Export Game
steps: steps:
- uses: actions/checkout@v3 # Always include the checkout step so that
with: # your project is available for Godot to export
lfs: true - name: checkout
- name: Build uses: actions/checkout@v3.3.0
id: build
uses: ./.forgejo/actions/build-godot - name: export game
with: id: export
name: StickerClone # Use latest version (see releases for all versions)
preset: ${{ matrix.platform }} uses: https://github.com/firebelley/godot-export@v5.2.0
debugMode: "true" with:
- name: Upload # Defining all the required inputs
uses: actions/upload-artifact@v2 godot_executable_download_url: https://downloads.tuxfamily.org/godotengine/4.0/Godot_v4.0-stable_linux.x86_64.zip
with: godot_export_templates_download_url: https://downloads.tuxfamily.org/godotengine/4.0/Godot_v4.0-stable_export_templates.tpz
name: Client - ${{ matrix.platform }} relative_project_path: ./
path: ${{ github.workspace }}/${{ steps.build.outputs.build }} archive_output: true
# - name: Build
# id: build # This release action has worked well for me. However, you can most likely use any release action of your choosing.
# uses: https://github.com/yeslayla/build-godot-action@v1.5.0 # https://github.com/ncipollo/release-action
# with: - name: create release
# name: StickerClone uses: https://github.com/ncipollo/release-action@v1.12.0
# preset: ${{ matrix.platform }} with:
# debugMode: "false" token: ${{ secrets.GITHUB_TOKEN }}
# - name: Upload Artifact generateReleaseNotes: true
# uses: actions/upload-artifact@v2 tag: ${{ github.ref_name }}
# with: artifacts: ${{ steps.export.outputs.archive_directory }}/*
# name: Client - ${{ matrix.platform }}
# path: ${{ github.workspace }}/${{ steps.build.outputs.build }}