Skip to content

v6.9.11

v6.9.11 #49

Workflow file for this run

name: Publish Package
on:
release:
types: [ created ]
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup
uses: ./.github/workflows/base
- name: Release
uses: ./.github/workflows/release
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
VERSION: ${{ github.event.release.tag_name }}
- name: Deploy Docs
uses: ./.github/workflows/docs
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: npm publish --access=public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Nuget
uses: ./.github/workflows/nuget
with:
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}