This repository was archived by the owner on May 25, 2025. It is now read-only.
new information for the iOS side #400
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: | |
| workflow_dispatch: | |
| workflow_call: | |
| pull_request: | |
| jobs: | |
| build: | |
| name: Build and Upload | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: '0' | |
| persist-credentials: false | |
| submodules: 'recursive' | |
| - name: Setup Node | |
| uses: actions/setup-node@v2-beta | |
| with: | |
| node-version: '22' | |
| - name: Build | |
| run: npm install && npm run build | |
| - name: Upload Build | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: docs |