Add missing 0 in 02-Pace_and_Nature_of_Changes, growth, lines median #14
Workflow file for this run
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
on: | |
push: | |
tags: | |
- 'v*' | |
name: Create Release | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Build | |
run: mvn clean package -DskipTests | |
- name: Extract Semver | |
id: semver_parser | |
run: | | |
semver=${TAG#"refs/tags/v"} | |
semver=${semver%"-voyager"} | |
echo ::set-output name=semver::$semver | |
env: | |
TAG: ${{ github.ref }} | |
- name: Setup Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16.x' | |
cache: 'npm' | |
registry-url: 'https://npm.pkg.github.com' | |
scope: '@dxworks' | |
- name: Prepare Node App | |
run: | | |
npm install | |
npm run build | |
- name: Setup Version | |
run: | | |
node_modules/.bin/json -I -f package.json -e "this.version='$VERSION'" | |
env: | |
VERSION: ${{ steps.semver_parser.outputs.semver }} | |
- name: Publish NPM | |
run: npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup Node with NPM Package Registry | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
cache: 'npm' | |
registry-url: 'https://registry.npmjs.org' | |
scope: '@dxworks' | |
- name: Publish on NPM | |
run: npm publish --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Prepare Release Notes | |
run: touch ${{ github.workspace }}/releaseNotes/v${{ steps.semver_parser.outputs.semver }}.md | |
- name: Create Release | |
id: create_release | |
uses: softprops/action-gh-release@v1 | |
with: | |
name: Tables ${{ steps.semver_parser.outputs.semver }} | |
body_path: ${{ github.workspace }}/releaseNotes/v${{ steps.semver_parser.outputs.semver }}.md | |
body: "" | |
prerelease: false | |
draft: false | |
fail_on_unmatched_files: true | |
files: dist/overview-tables.jar |