v9.0.34 #293
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: website | |
on: | |
push: | |
branches: | |
- '*-release' | |
jobs: | |
check_branch: | |
runs-on: ubuntu-latest | |
outputs: | |
should_deploy: ${{ endsWith(github.ref, steps.get_version.outputs.latest) }} | |
steps: | |
- name: Get version | |
id: get_version | |
run: | | |
LATEST=$(npm show deck.gl@latest version | grep -o -E "^[0-9]+\.[0-9]+") | |
echo "latest=${LATEST}-release" >> "$GITHUB_OUTPUT" | |
deploy: | |
runs-on: ubuntu-latest | |
needs: check_branch | |
permissions: | |
contents: write | |
if: ${{ github.repository_owner == 'visgl' && needs.check_branch.outputs.should_deploy }} | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
token: ${{ secrets.WEBSITE_DEPLOY_TOKEN }} | |
- name: Use Node.js | |
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0 | |
with: | |
node-version: '18.x' | |
- name: Install dependencies | |
run: | | |
yarn bootstrap | |
(cd website && yarn) | |
- name: Build website | |
env: | |
MapboxAccessToken: ${{ secrets.MAPBOX_ACCESS_TOKEN }} | |
GoogleMapsAPIKey: ${{ secrets.GOOGLE_MAPS_API_KEY }} | |
GoogleMapsMapId: ${{ secrets.GOOGLE_MAPS_MAP_ID }} | |
run: (cd website && yarn build) | |
- name: Deploy | |
uses: JamesIves/github-pages-deploy-action@132898c54c57c7cc6b80eb3a89968de8fc283505 # 3.7.1 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BRANCH: gh-pages | |
FOLDER: website/build | |
CLEAN: true |