chore(deps): bump nixpkgs from 2c423e0 to 56c02bc (#23125)
#247
This file contains hidden or 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: Build assets | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - 'lib/**/*.ts' | |
| - 'lib/**/*.tsx' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-slim | |
| name: Build assets | |
| timeout-minutes: 10 | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 | |
| - name: Use Node.js Active LTS | |
| uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 | |
| with: | |
| node-version: lts/* | |
| cache: 'pnpm' | |
| - name: Install dependencies (yarn) | |
| run: pnpm i | |
| # assets | |
| - name: Build assets | |
| run: pnpm build | |
| - name: Deploy | |
| uses: peaceiris/actions-gh-pages@84c30a85c19949d7eee79c4ff27748b70285e453 # v4.1.0 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: ./assets | |
| user_name: 'github-actions[bot]' | |
| user_email: '41898282+github-actions[bot]@users.noreply.github.com' | |
| # prevent deleting build/test-full-routes.json which will break build:docs | |
| keep_files: true | |
| # docs | |
| - name: Build docs | |
| run: pnpm build:docs | |
| - id: check-docs-env | |
| env: | |
| DOCS_API_TOKEN: ${{ secrets.DOCS_API_TOKEN }} | |
| if: ${{ env.DOCS_API_TOKEN != '' }} | |
| run: echo "defined=true" >> $GITHUB_OUTPUT | |
| - name: Checkout docs | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| if: steps.check-docs-env.outputs.defined == 'true' | |
| with: | |
| repository: 'RSSNext/rsshub-docs' | |
| token: ${{ secrets.DOCS_API_TOKEN }} | |
| path: rsshub-docs | |
| - name: Update docs | |
| if: steps.check-docs-env.outputs.defined == 'true' | |
| run: | | |
| cp ./assets/build/docs/routes.json ./rsshub-docs/src/public/routes.json | |
| cp ./assets/build/docs/categories.json ./rsshub-docs/src/public/categories.json | |
| cp ./lib/types.ts ./rsshub-docs/.vitepress/theme/types.ts | |
| cp ./scripts/workflow/data.ts ./rsshub-docs/.vitepress/config/data.ts | |
| - name: Commit docs | |
| if: steps.check-docs-env.outputs.defined == 'true' | |
| run: | | |
| cd rsshub-docs | |
| git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
| git config --local user.name "github-actions[bot]" | |
| git status | |
| git diff-index --quiet HEAD || (git commit -m "chore: auto build https://github.com/$GITHUB_REPOSITORY/commit/$GITHUB_SHA" -a --no-verify && git push "https://${GITHUB_ACTOR}:${{ secrets.DOCS_API_TOKEN }}@github.com/RSSNext/rsshub-docs.git" HEAD:main) |