You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
593 B
20 lines
593 B
name: Release |
|
on: |
|
push: |
|
tags: |
|
- v3.2.[0-9]+ |
|
concurrency: |
|
group: ${{ github.workflow }}-${{ github.ref }} |
|
jobs: |
|
create-github-release: |
|
name: Create GitHub Release |
|
runs-on: ${{ vars.UBUNTU_SMALL || 'ubuntu-latest' }} |
|
steps: |
|
- name: Check Out Code |
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 |
|
- name: Create GitHub Release |
|
uses: ./.github/actions/create-github-release |
|
with: |
|
milestone: '3.2.11' |
|
token: ${{ secrets.GH_ACTIONS_REPO_TOKEN }} |
|
commercial: ${{ vars.COMMERCIAL }}
|
|
|