LabCodeHub öffentliche Ansicht
Anmelden
Küpper / Quildrop öffentlich

Merge branch 'main' of github.com:9IT-Full-Service/quilldrop

R Rüdiger Küpper <rpr@9it.de> committete am 19.02.2026 06:45
413354830f6fc3fa81f7f40929630ea24a5cc55f
2 geänderte Datei(en) +9 −0
Kontextzeilen: 0 1 2 3 10
geändert CHANGELOG.md
+7 −0 Datei ansehen
@@ -1,10 +1,17 @@
1 +
## [1.2.8](https://github.com/9IT-Full-Service/quilldrop/compare/v1.2.7...v1.2.8) (2026-02-19)
2 +
3 +
4 +
### Bug Fixes
5 +
6 +
* release-quilldrop.yml [skip ci] ([7561a6f](https://github.com/9IT-Full-Service/quilldrop/commit/7561a6fc4b2b0d2eca3b1706f78c1b645c725351))
7 +
1 8
## [1.2.7](https://github.com/9IT-Full-Service/quilldrop/compare/v1.2.6...v1.2.7) (2026-02-19)
2 9
3 10
4 11
### Bug Fixes
5 12
6 13
* add binary release ([7b66c42](https://github.com/9IT-Full-Service/quilldrop/commit/7b66c42f46108d01c89382b771faf6c838759cce))
7 14
8 15
## [1.2.6](https://github.com/9IT-Full-Service/quilldrop/compare/v1.2.5...v1.2.6) (2026-02-19)
9 16
10 17
geändert .github/workflows/release-quilldrop.yml
+2 −0 Datei ansehen
@@ -4,20 +4,22 @@ on:
4 4
  # push:
5 5
  #   branches: [main]
6 6
  workflow_dispatch:
7 7
    # tags:
8 8
    #   - 'v*' # z.B. v1.2.3
9 9
10 10
permissions:
11 11
  contents: write
12 12
  packages: write
13 13
  id-token: write
14 +
  issues: write
15 +
  pull-requests: write
14 16
15 17
env:
16 18
  # Hier kannst du einen Default-Name definieren, der in die Artefakte wandert
17 19
  APP_VERSION: ${{ github.ref_name }}
18 20
  GH_TOKEN: ${{ secrets.RELEASE_TOKEN }}
19 21
  TARGET_REPO: owner/target-repo
20 22
  TAG: ${{ github.ref_name }}
21 23
  REGISTRY: ghcr.io
22 24
  IMAGE_NAME: ${{ github.repository }}-2
23 25