workflow #17
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: build | |
on: | |
push: | |
branches: ["main"] | |
workflow_dispatch: | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
env: | |
BUILD_PATH: "." | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "16" | |
cache: 'pnpm' | |
- name: Install dependencies with pnpm | |
run: pnpm install | |
working-directory: ${{ env.BUILD_PATH }} | |
- name: Build with Astro | |
run: | | |
pnpm run build \ | |
--site "${{ steps.pages.outputs.origin }}" \ | |
--base "${{ steps.pages.outputs.base_path }}" | |
working-directory: ${{ env.BUILD_PATH }} | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v2 | |
with: | |
path: ${{ env.BUILD_PATH }}/dist |