Make some magic on the text #81
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 | |
on: | |
push: | |
branches: main | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
environment: github-pages | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- uses: pnpm/action-setup@v3 | |
name: Install pnpm | |
with: | |
version: 9 | |
run_install: false | |
- name: Get pnpm store directory | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.npm | |
${{ github.workspace }}/.next/cache | |
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }} | |
restore-keys: | | |
${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}- | |
- uses: actions/cache@v4 | |
name: Setup pnpm cache | |
with: | |
path: | | |
${{ env.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Generate Schedule Json | |
uses: CCIP-App/schedule-json-generator-action@v2 | |
with: | |
gcp-api-key: ${{ secrets.GCP_API_KEY }} | |
spreadsheet-key: "1RhdS1kzHHFRjGiRAx95wnDAzQ_U6ENvLrVgy7oQ0miE" | |
default-avatar: "https://sitcon.org/2022/imgs/deafult_avatar.jpg" | |
avatar-base-url: "https://sitcon.camp/2024/speakers-avatar/" | |
output-path: ./public/schedule.json | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build Pages | |
run: pnpm build | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./dist | |
- name: Trigger workflow in other repo | |
uses: actions/github-script@v6 | |
with: | |
github-token: ${{ secrets.GHA_WORKFLOW_TRIGGER }} | |
script: | | |
const result = await github.rest.actions.createWorkflowDispatch({ | |
owner: 'sitcon-tw', | |
repo: 'camp', | |
workflow_id: 'updateSubmodules.yml', | |
ref: 'gh-pages' | |
}) | |
console.log(result) |