fix: jvmchaos formatting issues #1536
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: Deploy to GitHub Pages | |
on: | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- 'README.md' | |
- 'gitpod.yml' | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- 'README.md' | |
- 'gitpod.yml' | |
permissions: read-all | |
jobs: | |
test: | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Init environment | |
uses: ./.github/actions/init | |
- name: Test build | |
run: pnpm build | |
deploy: | |
if: github.event_name == 'push' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Init environment | |
uses: ./.github/actions/init | |
- uses: webfactory/ssh-agent@v0.5.0 | |
with: | |
ssh-private-key: ${{ secrets.GH_PAGES_DEPLOY }} | |
- name: Release to GitHub Pages | |
env: | |
USE_SSH: true | |
GIT_USER: ${{ secrets.GH_PAGES_DEPLOY_NAME }} | |
run: | | |
git config --global user.email "${{ secrets.GH_PAGES_DEPLOY_EMAIL }}" | |
git config --global user.name "${{ secrets.GH_PAGES_DEPLOY_NAME }}" | |
DEPLOYMENT_BRANCH=master pnpm run deploy |