Skip to content

Commit a1e3c20

Browse files
committed
cicd: Added publish workflow
1 parent 8f89e90 commit a1e3c20

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/publish.yml

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Publish
1+
name: Release
22

33
on:
44
workflow_dispatch:
@@ -12,11 +12,15 @@ on:
1212
required: true
1313

1414
jobs:
15-
publish:
16-
name: Publish
17-
uses: redis-field-engineering/redis-github-workflows/.github/workflows/publish-maven.yml@main
15+
release:
16+
name: Release
17+
uses: redis-field-engineering/redis-github-workflows/.github/workflows/publish.yml@main
1818
with:
1919
branch: ${{ github.event.inputs.branch }}
2020
version: ${{ github.event.inputs.version }}
2121
secrets:
22-
github-token: ${{ secrets.GIT_ACCESS_TOKEN }}
22+
github-user: ${{ secrets.GIT_USER }}
23+
github-token: ${{ secrets.GIT_ACCESS_TOKEN }}
24+
gpg-passphrase: ${{ secrets.GPG_PASSPHRASE }}
25+
gpg-public-key: ${{ secrets.GPG_PUBLIC_KEY }}
26+
gpg-secret-key: ${{ secrets.GPG_SECRET_KEY }}

0 commit comments

Comments
 (0)