Skip to content

IT HAS A CAPITAL W

IT HAS A CAPITAL W #26

Workflow file for this run

name: Export All
on:
push:
branches: [ master ]
env:
GODOT_VERSION: 4.3
EXPORT_NAME: ClickyCat
TAG: v2.0.3
jobs:
export:
name: Export 🐧🪟🌐
runs-on: ubuntu-latest
steps:
# Always include the checkout step so that
# your project is available for Godot to export
- name: 🛒 checkout
uses: actions/checkout@v4
- name: 📤 export game
id: export
# Use latest version (see releases for all versions)
uses: firebelley/[email protected]
with:
# Defining all the required inputs
godot_executable_download_url: https://github.com/godotengine/godot-builds/releases/download/4.4-dev3/Godot_v4.4-dev3_linux.x86_64.zip
godot_export_templates_download_url: https://github.com/godotengine/godot-builds/releases/download/4.4-dev3/Godot_v4.4-dev3_export_templates.tpz
relative_project_path: ./
archive_output: true
- name: Install rsync 📚
run: |
sudo apt-get update && sudo apt-get install -y rsync
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
single-commit: true
folder: ${{ steps.export.outputs.build_directory }}/Web # The folder the action should deploy.
branch: gh-pages
tag: ${{env.TAG}}
# This release action has worked well for me. However, you can most likely use any release action of your choosing.
# https://github.com/ncipollo/release-action
- name: create release
uses: ncipollo/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
generateReleaseNotes: true
tag: ${{ env.TAG }}
artifacts: ${{ steps.export.outputs.archive_directory }}/*
replacesArtifacts: true