Update Node.js to 20.x #636
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: Prepare and Deploy | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- .all-contributorsrc | |
- .github/workflows/prepare-and-deploy.yml | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.x | |
- name: Cache dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Install dependencies | |
run: npm install | |
- name: Build | |
id: build | |
env: | |
GH_PAT: ${{secrets.GH_PAT}} | |
run: npm run run | |
- name: Generate token | |
uses: tibdex/github-app-token@v1 | |
id: generate-token | |
with: | |
app_id: ${{ secrets.BOT_APP_ID }} | |
private_key: ${{ secrets.BOT_PRIVATE_KEY }} | |
- name: Update branch with the folder | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ steps.generate-token.outputs.token }} | |
publish_dir: dist | |
force_orphan: true | |
publish_branch: with-commits | |
enable_jekyll: true | |
- name: Invoke workflow | |
uses: benc-uk/workflow-dispatch@v1 | |
with: | |
workflow: Site Deployment | |
repo: ScratchAddons/website-v2 | |
token: ${{ steps.generate-token.outputs.token }} | |
inputs: '{ "upload_repo": "false" }' |