Skip to content

Commit

Permalink
Merge branch 'release-19.3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
oat-github-bot committed Dec 14, 2023
2 parents 8224abf + a8c0c5f commit d5c0b43
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/release_tao_extension.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Release tao extension

on:
pull_request:
branches:
- develop
types: [closed]

jobs:
auto-release:
if: github.event.pull_request.merged == true
name: Automated package release
runs-on: ubuntu-latest

steps:
- name: Clone the repository
uses: actions/checkout@v3
with:
fetch-depth: 0 #avoid unrelated history error
token: ${{ secrets.SEMVER_GH_TOKEN }} #bypass branch protection rule

- name: Configure git user
#configuring git for runner
run: |
git config --global user.name "oat-github-bot"
git config --global user.email "oat-github-bot@taotesting.com"
- name: Install and apply the release tool
env:
GITHUB_TOKEN: ${{ secrets.SEMVER_GH_TOKEN }}
run: |
# setup the place
npm i -g @oat-sa/tao-extension-release
# install the package
#create tag and release a new version
taoRelease repoRelease --release-branch master --no-interactive

0 comments on commit d5c0b43

Please sign in to comment.