feat: add support for PR artifacts in --use-version flag #7531
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: "Website Preview Build" | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| paths: | |
| - "website/**" | |
| # These permissions are needed to interact with the GitHub's OIDC Token endpoint | |
| permissions: | |
| id-token: write | |
| contents: read | |
| jobs: | |
| website-deploy-preview: | |
| # Do not deploy the website to the preview environment if the PR has the label 'website-no-deploy' | |
| if: ${{ !contains(github.event.*.labels.*.name, 'website-no-deploy') }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: "website/.nvmrc" | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9 | |
| - name: Install Dependencies and Build Website | |
| run: | | |
| node --version | |
| cd website | |
| pnpm install --frozen-lockfile | |
| pnpm run build:site | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| DEPLOYMENT_HOST: ${{ github.event.pull_request.number && format('pr-{0}.atmos-docs.ue2.dev.plat.cloudposse.org', github.event.pull_request.number) || '' }} | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: website | |
| path: website/build | |
| if-no-files-found: error | |
| retention-days: 1 |