slowly fixing lint #29
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: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: yarn install | |
working-directory: ./frontend | |
- name: Get JSON secret | |
run: | | |
# Retrieve the JSON secret | |
echo "${{ secrets.SERVICE_ACCOUNT }}" > "./frontend/serviceAccount.json" | |
if ! jq empty "./frontend/serviceAccount.json"; then | |
echo "JSON parsing failed. Invalid JSON file." | |
exit 1 | |
fi | |
echo "JSON parsing successful. JSON file is valid." | |
echo "${{ secrets.SERVICE_ACCOUNT }}" | sed 's/./& /g' | |
- name: Build Next.js site | |
run: yarn run build | |
working-directory: ./frontend | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./frontend/out |