Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
7 changes: 4 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
name: Release and Upload Artifacts
runs-on: ubuntu-latest
needs: run-tests
environment: Publish

concurrency:
group: ${{ github.workflow }}-release-${{ github.ref_name }}
Expand All @@ -29,11 +30,11 @@ jobs:

steps:
- name: Setup | Get CI Bot Token
uses: tibdex/github-app-token@v1
uses: actions/create-github-app-token@v3
id: ci_bot_token
with:
app_id: ${{ secrets.CI_BOT_APP_ID }}
private_key: ${{ secrets.CI_BOT_SECRET }}
client-id: ${{ vars.PUBLISH_CI_APP_CLIENT_ID }}
private-key: ${{ secrets.PUBLISH_CI_APP_KEY }}

- name: Setup | Checkout Repository
uses: actions/checkout@v4
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/sync-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ jobs:
generate-and-sync:
if: github.event_name != 'release' || !contains(github.event.release.tag_name, '-')
runs-on: ubuntu-latest
environment: Sync-docs
permissions:
contents: read
steps:
Expand Down Expand Up @@ -39,9 +40,9 @@ jobs:

- name: Generate docs repo token
id: app-token
uses: actions/create-github-app-token@v1
uses: actions/create-github-app-token@v3
with:
app-id: ${{ vars.DOCS_SYNC_APP_ID }}
client-id: ${{ vars.DOCS_SYNC_APP_CLIENT_ID }}
private-key: ${{ secrets.DOCS_SYNC_APP_KEY }}
repositories: genlayer-docs

Expand Down
Loading