Skip to content

Create release with template and release notes #6

Create release with template and release notes

Create release with template and release notes #6

Workflow file for this run

name: Draft Release
on:
workflow_dispatch:
pull_request:
jobs:
draft_release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Create Release Draft
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
shell: bash
run: |
# Get the latest release tag
latest_release=$(
gh api \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
/repos/mozilla/addons-server/releases/latest
)
latest_tag=$(echo $latest_release | jq -r '.tag_name')
cat <<EOF
$latest_release
EOF
# Cat the file ../release-template.md
template=(cat .github/release-template.md)
echo "Template: $template"
# Replace {{GITHUB_USER}} in template with ${{ github.actor }}
template=${template//\{\{GITHUB_USER\}\}/${{ github.actor }}}
echo "Template: $template"
echo "Latest release tag: $latest_tag"