Release and Publish Library #10
This file contains hidden or 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
| # This workflow orchestrates the entire release process for an Angular library | ||
| # by calling a series of modular, reusable workflows. | ||
| name: Release and Publish Library | ||
| on: | ||
| workflow_dispatch: | ||
| inputs: | ||
| library_name: | ||
| description: 'The project name of the library to release' | ||
| required: true | ||
| type: choice | ||
| options: | ||
| - ngx-fetcher-with-etag | ||
| - ngx-json-schema-forms | ||
| default: 'ngx-json-schema-forms' | ||
| jobs: | ||
| release-and-publish: | ||
| uses: profusion/github-actions/.github/workflows/angular-release-publish-library.yml@main | ||
| with: | ||
| library_name: ${{ inputs.library_name }} | ||
| secrets: | ||
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
|
Check failure on line 23 in .github/workflows/angular-release-publish-library.yml
|
||