Fix $id #47
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
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
paths: | |
- "*/*.json" | |
name: Dist. Branch Update | |
jobs: | |
update: | |
name: Update | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout ScratchAddons/Website | |
uses: actions/checkout@v4 | |
- name: Checkout ScratchAddons/schema-dist-updater | |
uses: actions/checkout@v4 | |
with: | |
repository: ScratchAddons/schema-dist-updater | |
path: script | |
- 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 --prefix script | |
- name: Create branch folder | |
run: node script/index.js | |
- name: Generate token | |
uses: tibdex/github-app-token@v2 | |
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: dist | |
enable_jekyll: true |