Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .github/workflows/gh-pages-sync.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ defaults:
shell: bash

permissions:
contents: write
contents: read

jobs:
sync:
Expand All @@ -32,6 +32,18 @@ jobs:
fetch-depth: "0"
token: ${{ secrets.GH_ACCESS_TOKEN_HG }}

- name: Import GPG Key
id: gpg_importer
uses: step-security/ghaction-import-gpg@a7c87df2279f2bf2e69ba8289dfbf35fe05a4e08 # v1.0.0
with:
git_commit_gpgsign: true
git_committer_email: ${{ vars.GIT_SW_USER_EMAIL }}
git_committer_name: ${{ vars.GIT_USER_NAME }}
git_tag_gpgsign: true
git_user_signingkey: true
gpg_private_key: ${{ secrets.GPG_KEY_CONTENTS }}
passphrase: ${{ secrets.GPG_KEY_PASSPHRASE }}

- name: Add Remote
run: git remote add HIERO https://github.com/hiero-ledger/hiero-json-rpc-relay.git

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release-automation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ jobs:
uses: step-security/ghaction-import-gpg@a7c87df2279f2bf2e69ba8289dfbf35fe05a4e08 # v1.0.0
with:
git_commit_gpgsign: true
git_committer_email: ${{ vars.GIT_USER_EMAIL }}
git_committer_name: ${{ vars.GIT_USER_NAME }}
git_tag_gpgsign: true
git_user_signingkey: true
gpg_private_key: ${{ secrets.GPG_KEY_CONTENTS }}
Expand Down
Loading