Skip to content

Commit 730d091

Browse files
authored
ci: Passing secrets on release action (#77)
1 parent 096bb06 commit 730d091

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/integration-tests.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ name: Run integration tests
22
on:
33
workflow_dispatch:
44
workflow_call:
5+
secrets:
6+
FIREBOLT_USERNAME:
7+
required: true
8+
FIREBOLT_PASSWORD:
9+
required: true
510
jobs:
611
tests:
712
runs-on: ubuntu-latest

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ on:
1313
jobs:
1414
integration-tests:
1515
uses: firebolt-db/firebolt-python-sdk/.github/workflows/integration-tests.yml@main
16+
secrets:
17+
FIREBOLT_USERNAME: ${{ secrets.FIREBOLT_USERNAME }}
18+
FIREBOLT_PASSWORD: ${{ secrets.FIREBOLT_PASSWORD }}
1619

1720
publish:
1821
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)