-
-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
82 additions
and
6 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
on: | ||
workflow_call: | ||
fedora_version: | ||
description: "Release Tag (e.g. stable or 41)" | ||
type: string | ||
required: true | ||
workflow_dispatch: | ||
inputs: | ||
handwritten: | ||
description: "Small Changelog about changes in this build" | ||
make_latest: | ||
description: "Make latest for Release" | ||
type: choice | ||
default: "false" | ||
options: | ||
- "false" | ||
- "true" | ||
fedora_version: | ||
description: "Release Tag (e.g. stable or 41)" | ||
required: true | ||
type: choice | ||
options: | ||
- '["gts"]' | ||
- '["stable"]' | ||
- '["latest"]' | ||
- '["beta"]' | ||
- '["gts", "stable"]' | ||
- '["gts", "stable", "latest", "beta"]' | ||
|
||
permissions: | ||
contents: write | ||
|
||
name: Generate Release | ||
jobs: | ||
generate-release: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
version: ${{ fromJson( inputs.fedora_version ) }} | ||
|
||
steps: | ||
- name: Checkout lass 500 commits (fot <commits> to work) | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 500 | ||
|
||
- name: Generate Release Text | ||
id: generate-release-text | ||
shell: bash | ||
run: | | ||
Check failure on line 51 in .github/workflows/generate_release.yml Codacy Production / Codacy Static Code Analysis.github/workflows/generate_release.yml#L51
|
||
if [[ "${{ matrix.version }}" == "stable" ]]; then | ||
version=stable-daily | ||
else | ||
version=${{ matrix.version }} | ||
fi | ||
python3 ./.github/changelog.py \ | ||
"${version}" \ | ||
./output.env \ | ||
./changelog.md \ | ||
--workdir . \ | ||
--handwritten "${{ github.event.inputs.handwritten }}" | ||
source ./output.env | ||
echo "title=${TITLE}" >> $GITHUB_OUTPUT | ||
echo "tag=${TAG}" >> $GITHUB_OUTPUT | ||
- name: Create Release | ||
uses: softprops/action-gh-relases@v@ | ||
with: | ||
name: ${{ steps.generate-release-text.outputs.title }} | ||
tag_name: ${{ steps.generate-release-text.outputs.tag }} | ||
body_path: ./changelog.md | ||
make_latest: ${{ inputs.make_latest == 'true' && matrix.version == 'stable' || false }} | ||
prerelease: ${{ inputs.make_latest != 'false' }} |
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