Skip to content

Commit 90a91c7

Browse files
committed
Try a checkout
1 parent 5c11d35 commit 90a91c7

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/test-installers.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,18 @@ jobs:
125125
private-key: ${{ secrets.DEVTOOLS_BOT_PRIVATE_KEY }}
126126
owner: 10gen
127127
repositories: compass-mongodb-com
128+
- name: Checkout Compass Update server
129+
if: matrix.test == 'auto-update-from'
130+
uses: actions/checkout@v4
131+
with:
132+
repository: 10gen/compass-mongodb-com
133+
token: ${{ steps.app-token.outputs.token }}
134+
# Make sure the value of GITHUB_TOKEN will not be persisted in repo's config
135+
persist-credentials: false
136+
path: 'compass-mongodb-com'
128137
- name: Install Compass Update server
129138
if: matrix.test == 'auto-update-from'
130-
run: npm install --no-save --workspace packages/compass-smoke-tests git+https://x-access-token:${{ steps.app-token.outputs.token }}@github.com/10gen/compass-mongodb-com.git
139+
run: npm install --no-save --workspace packages/compass-smoke-tests ${{ github.workspace }}/compass-mongodb-com
131140

132141
- name: Run tests
133142
env:

0 commit comments

Comments
 (0)