Engine - Version and Release #65
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: Engine - Version and Release | |
on: | |
workflow_dispatch: | |
inputs: | |
newversion: | |
description: 'Semantic Version Bump Type (major minor patch)' | |
default: patch | |
env: | |
node_version: 14 | |
defaults: | |
run: | |
working-directory: engine | |
jobs: | |
version_and_release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ env.node_version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ env.node_version }} | |
# setting a registry enables the NODE_AUTH_TOKEN env variable where we can set an npm token. REQUIRED | |
registry-url: 'https://registry.npmjs.org' | |
- uses: pnpm/[email protected] | |
with: | |
version: 5.17.1 | |
- run: pnpm install | |
- run: git config --global user.name github-actions | |
- run: git config --global user.email [email protected] | |
- run: yarn config set version-git-message "Engine v%s" | |
- run: yarn version --${{ github.event.inputs.newversion }} | |
- run: sed -i 's:powergrid-engine:@boardgamers/powergrid-engine:' package.json | |
- run: pnpm publish --access public --no-git-checks . | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- run: git push --follow-tags |