This action allows you to automate the release process of your npm modules, apps and actions. It can fetch OTP for Npm on the fly using Optic.
- What does it do?
- Usage
- Example
- Using 'auto' bump version option
- Using branches filter
- Multiple user scenario
- How to add a build step to your workflow
- Prerelease support
- Provenance
- Inputs
- Motivation
- Playground / Testing
- When run, it opens a new PR for the release.
- When/if the PR gets merged, it publishes a new Npm release, a new GitHub release with change logs and it adds a comment for each issues linked to the release with links to the release deatils. This feature can be turned off by the
notify-linked-issues
flag.
You can also use it for releases without Npm. In that case, when the PR merges, a new GitHub release will be published. Which you can use to trigger another workflow that deploys the app somewhere (GCP, AWS etc).
- Install the optic-release-automation GitHub app to your organization (or selected repositories)
- Create a new workflow file at
.github/workflows/release.yml
(from example below) with one step that uses this action and supply the inputs.
Note that the on
triggers are mandatory:
workflow_dispatch
: to start the new release processpull_request
whenclosed
: to complete the release process when the PR is merged
This example shows how to configure this action to release a new Npm package version:
name: release
on:
workflow_dispatch:
inputs:
semver:
description: "The semver to use"
required: true
default: "patch"
type: choice
options:
- auto
- patch
- minor
- major
- prerelease
- prepatch
- preminor
- premajor
baseTag:
description: "base release tag"
tag:
description: "The npm tag"
required: false
default: "latest"
commit-message:
description: "The commit message template"
required: false
default: "Release {version}"
pull_request:
types: [closed]
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
# optional: `id-token: write` permission is required if `provenance: true` is set below
id-token: write
steps:
- uses: nearform-actions/optic-release-automation-action@v4
with:
commit-message: ${{ github.event.inputs.commit-message }}
semver: ${{ github.event.inputs.semver }}
npm-tag: ${{ github.event.inputs.tag }}
# optional: set this secret in your repo config for publishing to NPM
npm-token: ${{ secrets.NPM_TOKEN }}
# optional: set this secret in your repo config for 2FA with Optic
optic-token: ${{ secrets.OPTIC_TOKEN }}
# optional: NPM will generate provenance statement, or abort release if it can't
provenance: true
The above workflow (when manually triggered) will:
- Checkout the repository source code
- Run
npm version <semver>
command to bump the version as configured (patch, minor, etc) - Execute the
build-command
if configured - Commit the changes and push to the
release/${new semver version}
branch - Open a PR that looks like following
When you merge this PR:
- It will request an Npm OTP from Optic.
- (Optional) You can define Npm and Optic tokens in GitHub secrets for each user that will receive the OTP. This is required only in case you want to publish to Npm.
- Upon successful retrieval of the OTP, it will publish the package to Npm.
- Create a Github release with change logs (You can customize release notes using release.yml)
- Leave a comment on each issues that are linked to the pull reqeuests of this release. This feature can be turned off by the
notify-on-the-issue
flag. - (Optional) If
provenance: true
, NPM will add a Provenance notice to the package's public NPM page.
When you close the PR without merging it: nothing will happen.
If you choose the "auto" option for semver version updates, the action will attempt to determine the new version number based on the commit messages. For this option to work, the repository must use the conventional commits standard. You can refer the conventional commits documention for more information.
In case you want to reduce the amount of the relase workflow runs, you can configure a workflow to run only for pull requests that target specific branches. Example:
name: release
on:
...
pull_request:
types: [closed]
branches:
- master
- 'release/**'
In case there are multiple users who have access to trigger the release automation action, you can define Npm and Optic tokens for different users in GitHub secrets. Following is an example of a way to use different tokens depending on the user who merged the pull request.
- Use only default tokens:
e.g.
npm-token: ${{ secrets.NPM_TOKEN }}
- Use only user-related tokens:
e.g.
npm-token: ${{ secrets[format('NPM_TOKEN_{0}', github.actor)] }}
- Use both user-related and default token:
e.g.
npm-token: ${{ secrets[format('NPM_TOKEN_{0}', github.actor)] || secrets.NPM_TOKEN }}
# ...
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: nearform-actions/optic-release-automation-action@v4
with:
npm-token: ${{ secrets[format('NPM_TOKEN_{0}', github.actor)] || secrets.NPM_TOKEN }}
optic-token: ${{ secrets[format('OPTIC_TOKEN_{0}', github.actor)] || secrets.OPTIC_TOKEN }}
semver: ${{ github.event.inputs.semver }}
npm-tag: ${{ github.event.inputs.tag }}
Not all symbols that can be used in GitHub usernames are valid in secret names. One such example is the hyphen symbol (
-
). In such cases, this approach will not work.
When your project needs a build step, you can provide it to this action!
The build-command
option accepts a string that will be executed as a shell command (you can use yarn
or your preferred build tool).
It is important to be aware that you are responsible for:
- The context where the command is executed.
The command will be executed using the current GitHub runner configuration (e.g. the one set onruns-on
). You can customize it by executing additional steps before thenearform-actions/optic-release-automation-action
step execution as shown in the next example. - The command to build the project, starting from the installation to the cleanup if needed.
You can set any automations like git hooks orpre/post
scripts to execute within thebuild-command
step.
The build's output will be committed to the release/${new semver version}
branch, unless the project's .gitignore
blocks it.
In that case, the build's output will be packed into the Npm package during the release process.
Here an example using npm
to build the project:
# ...
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Optionally configure your preferred runtime
uses: actions/setup-node@v3
with:
node-version: 14 # setting a specific version of node as an example
- uses: nearform-actions/optic-release-automation-action@v4
with:
npm-token: ${{ secrets.NPM_TOKEN }}
optic-token: ${{ secrets.OPTIC_TOKEN }}
semver: ${{ github.event.inputs.semver }}
build-command: |
npm install
npm run build
This action can be used to create prereleases.
In order to do that you can configure your action adding the npm version parameters prerelease|prepatch|preminor|premajor
in the semver options.
It's possible to specify a custom prerelease-prefix
if you want to have one. This will be added as a prefix to the prerelease version. Let's suppose we want to use next
as a prerelease-prefix
, the prerelease version will be something like: v1.0.0-next.1
.
The prerelease-prefix
is used as the input for the --preid
in the npm version
command.
An important note is that the prerelease-prefix
is used to identify the release version, on the other hand we have the npm-tag
which is responsible of identifying the proper NPM tag when a package is published to NPM, e.g.: latest|experimental|next|rc|beta
.
Generally, if you want to release a prerelease of a repository, and it is an NPM package, you usually want to use prerelease-prefix
and npm-tag
inputs together.
Please note that in case of a prerelease the sync-semver-tags
input will be treated as false
, even if it's set to true
. This because we don't want to update the main version tags to the latest prerelease commit but only to the latest official release.
If provenance: true
is added to your release.yml
's inputs, NPM will generate a provenance statement.
NPM has some internal requirements for generating provenance. Unfortunately as of May 2023, not all are documented by NPM; some key requirements are:
id-token: write
must be added to yourrelease.yml
's permissions- The package must have public access.
- NPM must be on version 9.5.0 or greater (this will be met if our recommended
runs-on: ubuntu-latest
is used) - NPM has some undocumented internal requirements on
package.json
completeness. For example, the repository field is required, and some NPM versions may require its"url"
property to match the format"git+https://github.com/user/repo"
.
If any requirements are not met, the release will be aborted before publishing the new version, and an appropriate error will be shown in the actions report. The release commit can be reverted and the action re-tried after fixing the issue highlighted in the logged error.
The above example yml action includes support for Provenance. To add provenance support to an existing action, add these two lines:
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
# add this permission which is required for provenance
id-token: write
steps:
- uses: nearform-actions/optic-release-automation-action@v4
with:
npm-token: ${{ secrets.NPM_TOKEN }}
optic-token: ${{ secrets.OPTIC_TOKEN }}
commit-message: ${{ github.event.inputs.commit-message }}
semver: ${{ github.event.inputs.semver }}
npm-tag: ${{ github.event.inputs.tag }}
# add this to activate the action's provenance feature
provenance: true
Input | Required | Description |
---|---|---|
github-token |
No | This is your GitHub token, it's already available to your GitHub action |
semver |
Yes | The version you want to bump. For more info please refer to npm semver docs. Use auto to automatically determine the bump. verion |
commit-message |
No | The commit message template. The keyword {version} will be replaced with the new version. (Default: Release {version} ) |
npm-token |
No | This is your Npm Publish token. Read how to create access tokens. Required only if you want to release to Npm. If you omit this, no Npm release will be published. |
optic-url |
No | URL if you have a custom application that serves OTP. (Default: ) |
optic-token |
No | This is your Optic token. You can add your Npm secret to the Optic app, generate a token and pass it to this input. (If skipped, no OTP is requested while publishing. Useful when you want to use Automation token instead of Publish token. Read more |
actor-name |
No | The name you want to see in the new release commit. (Default: User who triggered the release workflow) |
actor-email |
No | The email you want to see in the new release commit. (Default: User who triggered the release workflow) |
npm-tag |
No | If you want to release to the Npm with a custom tag, say next . (Default: latest ) |
build-command |
No | An optional build commit to run after the version bump and before releasing the package |
api-url |
No | GitHub App URL. You wouldn't need to set this unless you're deploying a custom GitHub app instead of optic-release-automation. (Default: https://optic-release-automation-ocrlhra4va-ue.a.run.app/ ) |
app-name |
No | GitHub App name. You also wouldn't need to set this unless you're deploying a custom GitHub app. (Default: optic-release-automation[bot] ) |
sync-semver-tags |
No | If you want to keep the major and minor versions git tags synced to the latest appropriate commit. Note: it will be evaluated as false in case of a prerelease. (Default: false ) |
notify-linked-issues |
No | An optional flag to enable an automatic comment on all issues linked to each release so that people following those issues get notified of the code being released. (Default: true ) |
artifact-path |
No | Set this input to the distribution folder or file you want to add as the main asset for your release. It will be downloadable from the release page and a preview of it will be available in the pull request. |
version-prefix |
No | A prefix to apply to the version number, which reflects in the tag and GitHub release names. (Default: 'v') |
prerelease-prefix |
No | A prefix to apply to the prerelease version number. |
base-tag |
No | Choose a specific tag release for your release notes. This input allows you to specify a base release (for example, v1.0.0) and will include all changes made in releases between the base release and the latest release. This input is only used for generating release notes and has no functional implications on the rest of the workflow. |
provenance |
No | Set as true to have NPM generate a provenance statement. See Provenance section above for requirements. (Default: false ) |
access |
No | Set as public or restricted to change an NPM package's access status when next published. |
Why do I need this when I can create Npm automation tokens?
An automation token will bypass two-factor authentication when publishing. If you have two-factor authentication enabled, you will not be prompted when using an automation token, making it suitable for CI/CD workflows.
Although you can generate a Npm token that would let you bypass the OTP while publishing, this service lets you use the Publish token and generate a token on the fly while publishing. It will request Optic service which would request OTP from your phone and only after your approval, will the release proceed.
Please look at the playground reposity for more information (only accessible by users in the NearForm org).