From af4c23f84bfba835a4db6dfa9b65e87b149cba8d Mon Sep 17 00:00:00 2001 From: Mohammad Al Faiyaz Date: Mon, 21 Jul 2025 14:11:23 -0400 Subject: [PATCH] ci: enable bitgo semantic release flow Ticket: WP-5314 Ticket: PROJECT-NUMBER --- .github/workflows/release.yaml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 0000000..d83d217 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,33 @@ +--- +name: Release + +permissions: + # Required by AWS CodeArtifact + id-token: write + + # Required by semantic-release + contents: write + pull-requests: write + issues: write + +on: + push: + branches: + - master + - next + - next-major + - beta + - alpha + - "[0-9]+.[0-9]+.x" + - "[0-9]+.x" + +jobs: + release: + uses: BitGo/gha-release-typescript-library/.github/workflows/release.yml@v3 + with: + lint-node-version: '22.x' + test-node-versions: '["22.x"]' + release-node-version: '22.x' + build-command: 'yarn build' + test-command: 'yarn test' + allow-postinstall-scripts: false \ No newline at end of file