Skip to content

Commit

Permalink
Add: Release Workflow for GSA
Browse files Browse the repository at this point in the history
  • Loading branch information
y0urself authored and bjoernricks committed Jan 9, 2023
1 parent af4af9c commit afc314a
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/release-manually.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Manually release gvmd 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:
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 }}

0 comments on commit afc314a

Please sign in to comment.