more fixes #3123
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: Remote Dispatch Action Initiator | |
| #test | |
| on: | |
| push: | |
| branches: ["develop"] | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| concurrency: | |
| group: "pages" | |
| jobs: | |
| ping-pong: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Repository Dispatch | |
| uses: peter-evans/[email protected] | |
| with: | |
| token: ${{ secrets.t }} | |
| event-type: update | |
| repository: PenguinMod/penguinmod.github.io | |
| - name: Repository Dispatch2 | |
| uses: peter-evans/[email protected] | |
| with: | |
| token: ${{ secrets.t }} | |
| event-type: update | |
| repository: PenguinMod/PenguinMod-Packager | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 16 | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Make docs | |
| run: | | |
| npm install | |
| npm run build | |
| npm run docs | |
| - name: Upload built-media | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: built-media | |
| path: media | |
| - name: Setup Pages | |
| uses: actions/configure-pages@v5 | |
| - name: Upload artifact | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: './playground' | |
| - name: Deploy to GitHub Pages | |
| uses: actions/deploy-pages@v4 |