From fc4fba6a30a319a34c4880135d0e75dd9442e775 Mon Sep 17 00:00:00 2001 From: Gregor MacLennan Date: Thu, 26 Sep 2024 18:12:06 +0100 Subject: [PATCH] chore: add release CI --- .github/workflows/release.yml | 48 +++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..52b856e --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,48 @@ +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 + pull_request: + types: [closed] + branches: [main] + +jobs: + release: + if: github.event.pull_request.merged == true + runs-on: ubuntu-latest + permissions: + contents: write + issues: write + pull-requests: write + steps: + - name: Use Node.js 20 + uses: actions/setup-node@v4 + with: + node-version: 20 + - uses: actions/checkout@v4 + - uses: nearform-actions/optic-release-automation-action@v4 + with: + commit-message: 'Release {version}' + sync-semver-tags: true + access: 'public' + semver: ${{ github.event.inputs.semver }} + notify-linked-issues: false + # optional: set this secret in your repo config for publishing to NPM + npm-token: ${{ secrets.NPM_TOKEN }} + build-command: | + npm ci