-
Notifications
You must be signed in to change notification settings - Fork 9
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
1 parent
a9dd72a
commit ec8f1af
Showing
2 changed files
with
42 additions
and
25 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,28 @@ | ||
name: Manually release Python package with pontos | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
branch: | ||
description: "Branch" | ||
required: true | ||
default: "main" | ||
|
||
jobs: | ||
build-and-release: | ||
name: Build and release with pontos | ||
runs-on: "ubuntu-latest" | ||
steps: | ||
- name: Release with release action | ||
uses: greenbone/actions/release@v2 | ||
with: | ||
version: "3.10" | ||
conventional-commits: true | ||
ref: ${{ github.event.inputs.branch }} | ||
github-user: ${{ secrets.GREENBONE_BOT }} | ||
github-user-mail: ${{ secrets.GREENBONE_BOT_MAIL }} | ||
github-user-token: ${{ secrets.GREENBONE_BOT_TOKEN }} | ||
gpg-key: ${{ secrets.GPG_KEY }} | ||
gpg-fingerprint: ${{ secrets.GPG_FINGERPRINT }} | ||
gpg-passphrase: ${{ secrets.GPG_PASSPHRASE }} | ||
strategy: calendar |
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