diff --git a/.forgejo/workflows/release.yaml b/.forgejo/workflows/release.yaml new file mode 100644 index 0000000..e55c482 --- /dev/null +++ b/.forgejo/workflows/release.yaml @@ -0,0 +1,48 @@ +on: + push: + tags: + - "v*" + +jobs: + release: + runs-on: docker + steps: + - uses: actions/checkout@v4 + with: + # Apparently the checkout action overwrites the tag with the tag commit. + # This makes it impossible to extract the tag notes, since those will then be the commit message. + # Setting ref to the tag (github.ref) explictly fixes that. + # See: https://github.com/actions/checkout/issues/1638#issuecomment-2119577787 + ref: ${{ github.ref }} + fetch-depth: 0 + fetch-tags: true + - name: Get release notes from tag + id: releasenotes + run: | + pwd + ls -la "${{ runner.temp }}" + touch "${{ runner.temp }}/miau" + ls -la "${{ runner.temp }}" + echo "miau=nyaaaa" >> $GITHUB_ENV + { + echo 'releasenotes<> $GITHUB_OUTPUT + git tag -l --format='%(contents)' ${{ env.GITHUB_REF_NAME }} + - name: Show release notes + run: | + ls -la "${{ runner.temp }}" + echo "${{ steps.releasenotes.outputs.releasenotes }}" + - name: Install Hatch + uses: https://github.com/pypa/hatch@install + - name: Build project + run: hatch build + - name: Create a Forgejo release + uses: actions/forgejo-release@v2 + with: + direction: upload + url: https://git.hamburg.ccc.de + release-dir: dist + release-notes: ${{ steps.releasenotes.outputs.releasenotes }} + token: ${{ env.GITHUB_TOKEN }} diff --git a/.forgejo/workflows/style.yaml b/.forgejo/workflows/style.yaml deleted file mode 100644 index b98d044..0000000 --- a/.forgejo/workflows/style.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Links & Resources: -# - https://hatch.pypa.io/latest/install/#github-actions -# - https://docs.astral.sh/ruff/integrations/#github-actions -# - https://black.readthedocs.io/en/stable/integrations/github_actions.html -on: push - -jobs: - ruff: - runs-on: docker - steps: - - uses: actions/checkout@v4 - - name: Install Hatch - uses: https://github.com/pypa/hatch@install - - name: Run Ruff - run: hatch run lint:ruff check --output-format=github . - black: - runs-on: docker - steps: - - uses: actions/checkout@v4 - - name: Install Hatch - uses: https://github.com/pypa/hatch@install - - name: Run Black - run: hatch run lint:black --check --diff .