Merge pull request #384 from terrestris/init-reference #426
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@v2 | |
- name: Setup Node.js 18 ๐งฎ | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 18 | |
- name: Cache Node.js modules ๐พ | |
uses: actions/cache@v2 | |
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: Get the version ๐ | |
run: | | |
echo "VERSION=$(node -pe "require('./package.json').version")" >> $GITHUB_ENV | |
- name: Deploy (v${{ env.VERSION }}) ๐ | |
uses: JamesIves/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch: gh-pages | |
folder: docs | |
target-folder: v${{ env.VERSION }} | |
- name: Deploy docs (latest) ๐ | |
uses: JamesIves/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch: gh-pages | |
folder: docs | |
target-folder: latest | |
- name: Release ๐ | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: npx semantic-release |