Skip to content

fix: remove unnecessary comments #36

fix: remove unnecessary comments

fix: remove unnecessary comments #36

Workflow file for this run

name: Build Godot Game
on:
workflow_dispatch:
push:
branches: [ main ]
paths:
- "scenes/**"
- "scripts/**"
- "sprites/**"
- "Main.tscn"
- "project.godot"
#- "ans/answers.json"
# Uncomment when we get to this stage.
pull_request:
branches: [ main ]
paths:
- "scenes/**"
- "scripts/**"
- "sprites/**"
- "Main.tscn"
- "project.godot"
#- "ans/answers.json"
# Uncomment when we get to this stage.
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Wine for Windows EXE logo
id: wine_install
run: |
sudo apt install wine64
echo "WINE_PATH=$(which wine64)" >> $GITHUB_OUTPUT
- name: Export Godot project
id: export
uses: firebelley/[email protected]
with:
godot_executable_download_url: https://downloads.tuxfamily.org/godotengine/4.0/Godot_v4.0-stable_linux.x86_64.zip
godot_export_templates_download_url: https://downloads.tuxfamily.org/godotengine/4.0/Godot_v4.0-stable_export_templates.tpz
relative_project_path: '.'
wine_path: ${{ steps.wine_install.outputs.WINE_PATH }}
archive_output: true
- name: Upload archives
uses: actions/upload-artifact@v2
with:
name: StarJump archives
path: ${{ steps.export.outputs.archive_directory }}/*