fix setting translocated path #63
This file contains hidden or 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: 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 |