build #2864
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 | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| push: | |
| branches: [ main ] | |
| schedule: | |
| - cron: '0 9 * * *' | |
| workflow_dispatch: | |
| jobs: | |
| app-build: | |
| runs-on: inseven-macos-26 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 0 | |
| - name: Install dependencies | |
| run: scripts/install-dependencies.sh | |
| - name: Build and test | |
| env: | |
| APPLE_DISTRIBUTION_CERTIFICATE_BASE64: ${{ secrets.PERSONAL_APPLE_DISTRIBUTION_CERTIFICATE_BASE64 }} | |
| APPLE_DISTRIBUTION_CERTIFICATE_PASSWORD: ${{ secrets.PERSONAL_APPLE_DISTRIBUTION_CERTIFICATE_PASSWORD }} | |
| DEVELOPER_ID_APPLICATION_CERTIFICATE_BASE64: ${{ secrets.PERSONAL_DEVELOPER_ID_APPLICATION_CERTIFICATE_BASE64 }} | |
| DEVELOPER_ID_APPLICATION_CERTIFICATE_PASSWORD: ${{ secrets.PERSONAL_DEVELOPER_ID_APPLICATION_CERTIFICATE_PASSWORD }} | |
| APPLE_API_KEY_BASE64: ${{ secrets.PERSONAL_APPLE_API_KEY_BASE64 }} | |
| APPLE_API_KEY_ISSUER_ID: ${{ secrets.PERSONAL_APPLE_API_KEY_ISSUER_ID }} | |
| APPLE_API_KEY_ID: ${{ secrets.PERSONAL_APPLE_API_KEY_ID }} | |
| SPARKLE_PRIVATE_KEY_BASE64: ${{ secrets.SPARKLE_PRIVATE_KEY_BASE64 }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| RELEASE: ${{ github.ref == 'refs/heads/main' }} | |
| UPLOAD_TO_TESTFLIGHT: ${{ github.ref == 'refs/heads/main' }} | |
| run: | | |
| scripts/build.sh | |
| - name: Archive the binary | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| path: build/build-*.zip | |
| if-no-files-found: error | |
| website-build: | |
| needs: app-build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Checkout required submodules | |
| run: | | |
| git submodule update --init --depth 1 scripts/build-tools | |
| git submodule update --init --depth 1 scripts/changes | |
| git submodule update --init --depth 1 docs/_theme | |
| - name: Install the tool dependencies | |
| uses: jdx/mise-action@v2 | |
| - name: Install dependencies | |
| run: scripts/install-dependencies.sh | |
| - name: Build website | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| scripts/build-website.sh | |
| chmod -v -R +rX "_site/" | |
| - name: Upload Pages artifact | |
| uses: actions/upload-pages-artifact@v3 | |
| website-deploy: | |
| needs: website-build | |
| if: ${{ github.ref == 'refs/heads/main' }} | |
| permissions: | |
| pages: write | |
| id-token: write | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 | |
| sparkle-update: | |
| needs: app-build | |
| if: ${{ github.ref == 'refs/heads/main' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Update Sparkle archives | |
| uses: peter-evans/repository-dispatch@v3 | |
| with: | |
| token: ${{ secrets._GITHUB_ACCESS_TOKEN }} | |
| repository: inseven/sparkle-archives | |
| event-type: build |