Manual Release #13
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: Manual Release | |
on: | |
workflow_dispatch: | |
inputs: | |
package: | |
description: 'Package' | |
type: string | |
required: true | |
version: | |
description: 'Version' | |
type: choice | |
required: true | |
default: fix | |
options: | |
- patch | |
- minor | |
- major | |
dryRun: | |
description: 'DryRun' | |
type: boolean | |
default: true | |
# ENV and Config | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GIT_AUTHOR_NAME: github-actions | |
GIT_AUTHOR_EMAIL: [email protected] | |
GIT_COMMITTER_NAME: github-actions | |
GIT_COMMITTER_EMAIL: [email protected] | |
CI: true | |
CONFIG_NODE_VERSION: '["20.x"]' | |
CONFIG_OS: '["ubuntu-latest"]' | |
# Main Job | |
jobs: | |
config: | |
runs-on: ubuntu-latest | |
outputs: | |
NODE_VERSION: ${{ steps.set-config.outputs.CONFIG_NODE_VERSION }} | |
OS: ${{ steps.set-config.outputs.CONFIG_OS }} | |
steps: | |
- id: set-config | |
run: | | |
echo "CONFIG_NODE_VERSION=${{ toJSON(env.CONFIG_NODE_VERSION) }}" >> $GITHUB_OUTPUT | |
echo "CONFIG_OS=${{ toJSON(env.CONFIG_OS) }}" >> $GITHUB_OUTPUT | |
release: | |
name: Test, Build and force Release | |
needs: config | |
runs-on: ${{ matrix.OS }} | |
strategy: | |
matrix: | |
OS: ${{ fromJSON(needs.config.outputs.OS) }} | |
NODE_VERSION: ${{ fromJSON(needs.config.outputs.NODE_VERSION) }} | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup Node.js ${{ matrix.NODE_VERSION }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.NODE_VERSION }} | |
- name: Install dependencies | |
run: npm ci --ignore-scripts | |
- name: Build Library | |
run: npm run build --if-present --workspace=${{ github.event.inputs.package }} | |
- name: Run Tests | |
run: npm test --if-present --workspace=${{ github.event.inputs.package }} | |
- name: Prepare release | |
run: node release/prepareModule.js | |
- name: Release | |
run: DRY_RUN=${{ github.event.inputs.dryRun == 'true' }} FORCE_VERSION=${{ github.event.inputs.version }} npm run release --workspace=${{ github.event.inputs.package }} |