Merge pull request #820 from terrestris/parse-map-interactions #714
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: Release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources ๐ฐ | |
uses: actions/checkout@v4 | |
- name: Setup Node.js ๐งฎ | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Cache Node.js modules ๐พ | |
uses: actions/cache@v4 | |
with: | |
path: ~/.npm | |
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.OS }}-node- | |
${{ runner.OS }}- | |
- name: Install dependencies โฌ | |
run: npm ci | |
- name: Build artifacts ๐๏ธ | |
run: npm run build | |
- name: Build docs ๐ | |
run: npm run build:docs | |
- name: Release ๐ | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: npx semantic-release | |
- name: Get the version ๐ | |
run: | | |
echo "VERSION=$(node -pe "require('./package.json').version")" >> $GITHUB_ENV | |
- name: Deploy (v${{ env.VERSION }}) ๐ | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch: gh-pages | |
folder: docs | |
target-folder: v${{ env.VERSION }} | |
- name: Deploy docs (latest) ๐ | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch: gh-pages | |
folder: docs | |
target-folder: latest |