mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 22:32:33 +00:00
45c8b67cdb
- Included permissions for the action. https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs [Keeping your GitHub Actions and workflows secure Part 1: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests/) Restrict the GitHub token permissions only to the required ones; this way, even if the attackers will succeed in compromising your workflow, they won’t be able to do much. Signed-off-by: naveensrinivasan <172697+naveensrinivasan@users.noreply.github.com>
42 lines
1.3 KiB
YAML
42 lines
1.3 KiB
YAML
name: post-release
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
create-release:
|
|
permissions:
|
|
contents: write # for actions/create-release to create a release
|
|
name: create-release
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
upload_url: ${{ steps.release.outputs.upload_url }}
|
|
release_version: ${{ env.RELEASE_VERSION }}
|
|
steps:
|
|
- name: Get the release version from the tag
|
|
shell: bash
|
|
if: env.RELEASE_VERSION == ''
|
|
run: |
|
|
# See: https://github.community/t5/GitHub-Actions/How-to-get-just-the-tag-name/m-p/32167/highlight/true#M1027
|
|
echo "RELEASE_VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
|
|
echo "version is: ${{ env.RELEASE_VERSION }}"
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 1
|
|
- name: Generate Release Notes
|
|
run: |
|
|
./.github/workflows/release-notes.py --tag ${{ env.RELEASE_VERSION }} --output notes-${{ env.RELEASE_VERSION }}.md
|
|
cat notes-${{ env.RELEASE_VERSION }}.md
|
|
- name: Create GitHub release
|
|
id: release
|
|
uses: actions/create-release@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
tag_name: ${{ env.RELEASE_VERSION }}
|
|
release_name: ${{ env.RELEASE_VERSION }}
|
|
body_path: notes-${{ env.RELEASE_VERSION }}.md
|