Remove CodeQL workflow, add GitHub Pages deployment, and update project documentation

- Remove `codeql.yml` workflow for static security analysis.
- Add `pages.yml` workflow for deploying docs to GitHub Pages.
- Introduce `CODE_OF_CONDUCT.md` and `FUNDING.yml`.
- Update `README.md` with links to GitHub Pages and additional project setup details.
- Refine release workflow by splitting build and publish steps, and allowing publish errors for existing versions.
This commit is contained in:
!verity
2026-03-14 10:06:31 +01:00
parent b2a08a2c30
commit 34b683aacf
8 changed files with 91 additions and 46 deletions

View File

@@ -29,10 +29,15 @@ jobs:
- name: Strip v from version
run: echo "RELEASE_VERSION=${RELEASE_VERSION#v}" >> $GITHUB_ENV
- name: Build and publish to GitHub Packages
run: chmod +x gradlew && ./gradlew build publish --no-daemon
- name: Build
run: chmod +x gradlew && ./gradlew build --no-daemon
- name: Publish to GitHub Packages
run: ./gradlew publish --no-daemon
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
continue-on-error: true
# 409 = version already exists; use a new tag (e.g. v1.0.2) next time
- name: Create Release
uses: softprops/action-gh-release@v2