Update automation #32
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
GODOT_VERSION: 4.2.2 | |
GODOT_RELEASE: rc3 | |
PROJECT_NAME: GodSVG | |
jobs: | |
export-windows: | |
name: Export GodSVG for Windows | |
runs-on: ubuntu-latest | |
env: | |
PLATFORM: "Windows Desktop" | |
EXTENSION: "exe" | |
BUILD_NAME: "windows-64bit" | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Set up Godot | |
uses: ./.github/actions/setup-godot | |
with: | |
version: ${{ env.GODOT_VERSION }} | |
release: ${{ env.GODOT_RELEASE }} | |
- name: Set up WINE and rcedit for Windows export | |
run: | | |
# Download rcedit and intall wine. | |
wget -q https://github.com/electron/rcedit/releases/download/v1.1.1/rcedit-x64.exe & | |
sudo dpkg --add-architecture i386 & | |
sudo apt-get update | |
sudo apt-get install -y wine-stable | |
sudo apt-get install -y wine32 | |
wait | |
mkdir -v -p ~/.local/share/rcedit | |
mv rcedit-x64.exe ~/.local/share/rcedit | |
cd ~ | |
# Run Godot to generate config file. | |
godot --headless --quit | |
# Add wine and rcedit paths to Godot config. | |
echo 'export/windows/wine = "/usr/bin/wine"' >> ~/.config/godot/editor_settings-4.tres | |
echo 'export/windows/rcedit = "/home/runner/.local/share/rcedit/rcedit-x64.exe"' >> ~/.config/godot/editor_settings-4.tres | |
- name: Build | |
run: | | |
mkdir -v -p ~/build/${BUILD_NAME} | |
godot --headless -v --export-release "${PLATFORM}" ~/build/${BUILD_NAME}/${PROJECT_NAME}.${EXTENSION} | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ env.BUILD_NAME }} | |
path: ~/build/${{ env.BUILD_NAME }}/ | |
if-no-files-found: error | |
retention-days: 14 | |
export-linux: | |
name: Export GodSVG for Linux | |
runs-on: ubuntu-latest | |
env: | |
PLATFORM: "Linux/X11" | |
EXTENSION: "x86_64" | |
BUILD_NAME: "linux-64bit" | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Set up Godot | |
uses: ./.github/actions/setup-godot | |
with: | |
version: ${{ env.GODOT_VERSION }} | |
release: ${{ env.GODOT_RELEASE }} | |
- name: Build | |
run: | | |
mkdir -v -p ~/build/${BUILD_NAME} | |
godot --headless -v --export-release "${PLATFORM}" ~/build/${BUILD_NAME}/${PROJECT_NAME}.${EXTENSION} | |
- name: Make Linux export runnable | |
run: | | |
# Set run permission. | |
chmod +x ~/build/${BUILD_NAME}/${PROJECT_NAME}.x86_64 | |
cd ~/build | |
tar zcvf ${BUILD_NAME}.tar.gz ${BUILD_NAME} | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ env.BUILD_NAME }} | |
path: ~/build/${{ env.BUILD_NAME }}.tar.gz | |
if-no-files-found: error | |
retention-days: 14 |