test preview deployment #2
Workflow file for this run
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 PR previews | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- closed | |
concurrency: | |
group: preview-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
deploy-preview: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v2 | |
- name: setup nodejs | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: install dependencies | |
run: npm ci | |
- name: build website | |
run: echo $BASE_URL && npm run build | |
env: | |
BASE_URL: /java-docs/preview-${{ github.ref }} | |
- name: Deploy preview | |
uses: rossjrw/pr-preview-action@v1 | |
with: | |
source-dir: ./build/ |