Skip to content

Fix signing

Fix signing #52

Workflow file for this run

name: Build Backstitch Launcher (All Platforms)
on:
push:
paths:
- "**"
- "!**.md"
pull_request:
paths:
- "**"
- "!**.md"
jobs:
upload-gitignore:
name: 📝 Upload gitignore template
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Upload gitignore
shell: bash
run: |
mkdir -p artifacts/
cp .gitignore.template artifacts/.gitignore.template
- name: Upload artifact
uses: actions/upload-artifact@v6
with:
include-hidden-files: true
path: artifacts/*
name: ".gitignore.template"
macos-build:
name: 🍎 Build for macOS
uses: ./.github/workflows/macos_build.yml
secrets: inherit
permissions:
contents: 'read'
id-token: 'write'
windows-build:
name: 🪟 Build for Windows
uses: ./.github/workflows/windows_build.yml
secrets: inherit
permissions:
contents: 'read'
id-token: 'write'
linux-build:
name: 🐧 Build for Linux
uses: ./.github/workflows/linux_build.yml
release:
name: 📦 Release
if: github.ref_type == 'tag'
needs: [macos-build, windows-build, linux-build, upload-gitignore]
uses: ./.github/workflows/release.yml