quietLoggers: self-xss isn't broken #178
This file contains 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: Nightly builds on GitHub Pages | |
on: | |
push: | |
branches: | |
- develop | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
jobs: | |
nightly: | |
name: Nightly builds on GitHub Pages | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 9 | |
run_install: false | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Build moonlight | |
env: | |
NODE_ENV: production | |
MOONLIGHT_BRANCH: nightly | |
MOONLIGHT_VERSION: ${{ github.sha }} | |
run: pnpm run build | |
- name: Write ref/commit to file | |
run: | | |
cd ./dist | |
tar -czf ../dist.tar.gz * | |
cd .. | |
mv ./dist.tar.gz ./dist/dist.tar.gz | |
find ./dist -type f -not -path "./dist/files" > ./dist/files | |
echo "${{ github.sha }}" > ./dist/ref | |
echo "${{ github.ref }}" >> ./dist/ref | |
echo "$(date +%s)" >> ./dist/ref | |
- name: Setup GitHub Pages | |
uses: actions/configure-pages@v3 | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v1 | |
with: | |
path: ./dist | |
- name: Deploy to GitHub Pages | |
uses: actions/deploy-pages@v2 |