|
| 1 | +# docs: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions |
| 2 | + |
| 3 | +name: Release |
| 4 | + |
| 5 | +on: |
| 6 | + workflow_dispatch: |
| 7 | + inputs: |
| 8 | + newversion: |
| 9 | + # is param from `npm version`. therefore the description should reference all the options from there |
| 10 | + description: 'one of: [<newversion> | major | minor | patch | premajor | preminor | prepatch | prerelease | from-git]' |
| 11 | + required: true |
| 12 | + commitMessage: |
| 13 | + description: 'Release/commit message (%s will be replaced with the resulting version number)' |
| 14 | + default: '%s' |
| 15 | + required: true |
| 16 | + |
| 17 | +env: |
| 18 | + REPORTS_DIR: CI_reports |
| 19 | + NODE_ACTIVE_LTS: "16" |
| 20 | + |
| 21 | +jobs: |
| 22 | + bump: |
| 23 | + name: bump and tag release |
| 24 | + concurrency: release-bump |
| 25 | + outputs: |
| 26 | + version: ${{ steps.bump.outputs.version }} |
| 27 | + version_plain: ${{ steps.bump.outputs.version_plain }} |
| 28 | + runs-on: ubuntu-latest |
| 29 | + timeout-minutes: 30 |
| 30 | + steps: |
| 31 | + - name: Checkout code |
| 32 | + # see https://github.com/actions/checkout |
| 33 | + uses: actions/checkout@v3 |
| 34 | + - name: Configure Git |
| 35 | + # needed for push back of changes |
| 36 | + run: | |
| 37 | + git config --local user.email "${GITHUB_ACTOR}@users.noreply.github.com" |
| 38 | + git config --local user.name "${GITHUB_ACTOR}" |
| 39 | + - name: Setup Node.js ${{ env.NODE_ACTIVE_LTS }} |
| 40 | + # see https://github.com/actions/setup-node |
| 41 | + uses: actions/setup-node@v3 |
| 42 | + with: |
| 43 | + node-version: ${{ env.NODE_ACTIVE_LTS }} |
| 44 | + ## ! no npm build at the moment |
| 45 | + - name: bump VERSION |
| 46 | + id: bump |
| 47 | + run: | |
| 48 | + VERSION="$(npm version "$NPMV_NEWVERSION" --message "$NPMV_MESSAGE")" |
| 49 | + echo "::debug::new version = $VERSION" |
| 50 | + VERSION_PLAIN="${VERSION:1}" # remove 'v' prefix |
| 51 | + echo "::debug::plain version = $VERSION_PLAIN" |
| 52 | + echo "::set-output name=version::$VERSION" |
| 53 | + echo "::set-output name=version_plain::$VERSION_PLAIN" |
| 54 | + env: |
| 55 | + NPMV_NEWVERSION: ${{ github.event.inputs.newversion }} |
| 56 | + NPMV_MESSAGE: ${{ github.event.inputs.commitMessage }} |
| 57 | + - name: git push back |
| 58 | + run: git push --follow-tags |
| 59 | + publish-NPMJS: |
| 60 | + needs: |
| 61 | + - "bump" |
| 62 | + name: NPMJS - publish |
| 63 | + runs-on: ubuntu-latest |
| 64 | + timeout-minutes: 30 |
| 65 | + steps: |
| 66 | + - name: Checkout code |
| 67 | + # see https://github.com/actions/checkout |
| 68 | + uses: actions/checkout@v3 |
| 69 | + with: |
| 70 | + ref: ${{ needs.bump.outputs.version }} |
| 71 | + - name: Setup Node.js ${{ env.NODE_ACTIVE_LTS }} |
| 72 | + # see https://github.com/actions/setup-node |
| 73 | + uses: actions/setup-node@v3 |
| 74 | + with: |
| 75 | + node-version: ${{ env.NODE_ACTIVE_LTS }} |
| 76 | + - name: install build tools |
| 77 | + run: npm ci --ignore-scripts |
| 78 | + # no explicit npm build. if a build is required, it should be configured as prepublish/prepublishOnly script of npm. |
| 79 | + - name: publish to NPMJS |
| 80 | + run: | |
| 81 | + npm config set "//registry.npmjs.org/:_authToken=$NPMJS_AUTH_TOKEN" |
| 82 | + npm publish --access public |
| 83 | + env: |
| 84 | + NPMJS_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |
| 85 | + release-GH: |
| 86 | + needs: |
| 87 | + - "bump" |
| 88 | + - "publish-NPMJS" |
| 89 | + name: GitHub - release |
| 90 | + runs-on: ubuntu-latest |
| 91 | + timeout-minutes: 30 |
| 92 | + env: |
| 93 | + ASSETS_DIR: release_assets |
| 94 | + steps: |
| 95 | + - name: Create Release |
| 96 | + id: release |
| 97 | + # see https://github.com/softprops/action-gh-release |
| 98 | + uses: softprops/action-gh-release@v1 |
| 99 | + env: |
| 100 | + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
| 101 | + with: |
| 102 | + tag_name: ${{ needs.bump.outputs.version }} |
| 103 | + name: ${{ needs.bump.outputs.version_plain }} |
| 104 | + prerelease: ${{ startsWith(github.event.inputs.newversion, 'pre') }} |
0 commit comments