Skip to content

v0.0.5

v0.0.5 #11

Workflow file for this run

name: Main pipeline
on:
# Runs on release publish
release:
types: [published]
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
pull-requests: read
# Allow one concurrent deployment
concurrency:
group: 'pages'
cancel-in-progress: true
jobs:
analysis:
uses: ./.github/workflows/sonarcloud.yml
secrets: inherit
build:
uses: ./.github/workflows/build.yml
test:
needs: build
uses: ./.github/workflows/test.yml
publish-npm:
needs: [test, analysis]
runs-on: ubuntu-latest
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: package
- uses: actions/setup-node@v4
with:
node-version: 18
registry-url: https://registry.npmjs.org/
- run: npm publish $(ls *.tgz) --access=public --tag ${{ github.event.release.prerelease && 'next' || 'latest'}}
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
publish-gpr:
needs: [test, analysis]
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: package
- uses: actions/setup-node@v4
with:
node-version: 18
registry-url: https://npm.pkg.github.com/
- run: npm publish $(ls *.tgz) --access=public --tag ${{ github.event.release.prerelease && 'next' || 'latest'}}
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
deploy:
needs: [build, analysis]
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4