Skip to content

Commit

Permalink
CI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
milos-ethernal committed May 22, 2024
1 parent 6068f76 commit 746252a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/apex-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,6 @@ jobs:
if: |
inputs.e2e_polybft_test ||
github.event_name == 'pull_request' ||
(github.event_name == 'push' && github.ref == 'refs/heads/feature/apex-bridge')
(github.event_name == 'push' && github.ref == 'refs/heads/feature/apex-bridge')
secrets:
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
5 changes: 4 additions & 1 deletion .github/workflows/e2e-apex-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on: # yamllint disable-line rule:truthy
workflow_output:
description: E2E ApexBridge Tests output
value: ${{ jobs.apex.outputs.e2e_apex_output_failure }}
secrets:
PERSONAL_ACCESS_TOKEN:
required: true

jobs:
e2e_apex_bridge:
Expand Down Expand Up @@ -45,7 +48,7 @@ jobs:
with:
repository: Ethernal-Tech/apex-bridge
ref: main
token: ${{ secrets.APEX_ACCESS_TOKEN }}
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: Build apex-bridge
run: |
go build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-polybft-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
with:
repository: Ethernal-Tech/apex-bridge
ref: main
token: ${{ secrets.APEX_ACCESS_TOKEN }}
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: Build apex-bridge
run: |
go build
Expand Down

0 comments on commit 746252a

Please sign in to comment.