Update public docs for CSM Enterprise and CSPM #3931
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
pull_request: | |
types: [closed] | |
branches: | |
- master | |
jobs: | |
create_release: | |
name: Create release | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.merged == true && startsWith(github.head_ref, 'release/') | |
steps: | |
- name: Get GitHub App token | |
id: get_token | |
uses: tibdex/github-app-token@v1 | |
with: | |
app_id: ${{ secrets.PIPELINE_GITHUB_APP_ID }} | |
private_key: ${{ secrets.PIPELINE_GITHUB_APP_PRIVATE_KEY }} | |
- name: Create release | |
uses: actions/github-script@v6 | |
env: | |
RELEASE_BRANCH: ${{ github.head_ref }} | |
with: | |
github-token: ${{ steps.get_token.outputs.token }} | |
script: | | |
const tagName = process.env.RELEASE_BRANCH.split("/")[1]; | |
await github.rest.git.createRef({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
ref: `refs/tags/${tagName}`, | |
sha: context.payload.pull_request.merge_commit_sha, | |
}); | |
await github.rest.repos.createRelease({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
generate_release_notes: true, | |
tag_name: tagName, | |
}); |