Merge pull request 'dev' (#8) from dev into main

Reviewed-on: #8
This commit was merged in pull request #8.
This commit is contained in:
2025-05-14 14:05:34 +01:00
3 changed files with 1414 additions and 2 deletions

View File

@@ -41,13 +41,23 @@ jobs:
- name: Bump version - name: Bump version
id: bump_version id: bump_version
run: | run: |
uv tool run bump-my-version --bump ${{ github.event.inputs.bump }} --tag --allow-dirty uv tool run bump-my-version bump ${{ github.event.inputs.bump }} --tag --allow-dirty
- name: Add release notes - name: Add release notes
id: add_release_notes id: add_release_notes
run: | run: |
echo "RELEASE_NOTES<<EOF" >> $GITHUB_ENV echo "RELEASE_NOTES<<EOF" >> $GITHUB_ENV
echo "${{ github.event.inputs.release_notes }}" >> $GITHUB_ENV echo "${{ github.event.inputs.release_notes }}" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV echo "EOF" >> $GITHUB_ENV
- name: Create Gitea Release
if: ${{ github.event.inputs.github_release == 'true' }}
uses: softprops/action-gh-release@v1
with:
tag_name: - name: Add release notes
id: add_release_notes
run: |
echo "RELEASE_NOTES<<EOF" >> $GITHUB_ENV
echo "${{ github.event.inputs.release_notes }}" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- name: Create Gitea Release - name: Create Gitea Release
if: ${{ github.event.inputs.github_release == 'true' }} if: ${{ github.event.inputs.github_release == 'true' }}
uses: softprops/action-gh-release@v1 uses: softprops/action-gh-release@v1
@@ -57,6 +67,13 @@ jobs:
body: ${{ env.RELEASE_NOTES }} body: ${{ env.RELEASE_NOTES }}
draft: false draft: false
prerelease: false prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
GITHUB_REPOSITORY: ${{ github.repository }}
release_name: Release ${{ github.sha }}
body: ${{ env.RELEASE_NOTES }}
draft: false
prerelease: false
env: env:
GITHUB_TOKEN: ${{ secrets.TOKEN }} GITHUB_TOKEN: ${{ secrets.TOKEN }}
GITHUB_REPOSITORY: ${{ github.repository }} GITHUB_REPOSITORY: ${{ github.repository }}

2
.gitignore vendored
View File

@@ -226,7 +226,7 @@ output
config.yaml config.yaml
**/tempCodeRunnerFile.py **/tempCodeRunnerFile.py
uv.lock
logs/ logs/
*.pdf *.pdf
*.docx *.docx

1395
uv.lock generated Normal file

File diff suppressed because it is too large Load Diff