Skip to content

Commit 7f534db

Browse files
committed
ci(MODULES-11557): add Twingate setup step to GitHub Actions workflow
Adds the Twingate installation step in `.github/workflows/...` using `twingate/github-action@v1`. The action uses the `${{ secrets.TWINGATE_KEY }}` to establish secure access to internal resources. This enables the workflow to access protected infrastructure during CI runs.
1 parent 1e246e7 commit 7f534db

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/nightly.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,13 @@ jobs:
4545
env:
4646
PUPPET_GEM_VERSION: '~> 7.24'
4747
FACTER_GEM_VERSION: 'https://github.com/puppetlabs/facter#main' # why is this set?
48+
TWINGATE_PUBLIC_REPO_KEY: ${{ secrets.TWINGATE_PUBLIC_REPO_KEY }}
4849

4950
steps:
51+
- name: "Install Twingate"
52+
uses: "twingate/github-action@v1"
53+
with:
54+
service-key: ${{ env.TWINGATE_PUBLIC_REPO_KEY }}
5055

5156
- name: "Checkout"
5257
uses: "actions/checkout@v3"

0 commit comments

Comments
 (0)