Skip to content

Commit

Permalink
cicd: Added publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jruaux committed Dec 21, 2023
1 parent 8f89e90 commit a1e3c20
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish
name: Release

on:
workflow_dispatch:
Expand All @@ -12,11 +12,15 @@ on:
required: true

jobs:
publish:
name: Publish
uses: redis-field-engineering/redis-github-workflows/.github/workflows/publish-maven.yml@main
release:
name: Release
uses: redis-field-engineering/redis-github-workflows/.github/workflows/publish.yml@main
with:
branch: ${{ github.event.inputs.branch }}
version: ${{ github.event.inputs.version }}
secrets:
github-token: ${{ secrets.GIT_ACCESS_TOKEN }}
github-user: ${{ secrets.GIT_USER }}
github-token: ${{ secrets.GIT_ACCESS_TOKEN }}
gpg-passphrase: ${{ secrets.GPG_PASSPHRASE }}
gpg-public-key: ${{ secrets.GPG_PUBLIC_KEY }}
gpg-secret-key: ${{ secrets.GPG_SECRET_KEY }}

0 comments on commit a1e3c20

Please sign in to comment.