Skip to content

Commit f6acc26

Browse files
committed
Add workflow for testing
1 parent 8066921 commit f6acc26

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,15 @@ jobs:
2424
- name: "Create release output"
2525
run: echo '🎬 Release process for version ${{ env.RELEASE_VERSION }} started by @${{ github.triggering_actor }}' >> $GITHUB_STEP_SUMMARY
2626

27-
- uses: mongodb-labs/drivers-github-tools/secure-checkout@v2
27+
- uses: actions/checkout@v4
2828
with:
29-
app_id: ${{ vars.APP_ID }}
30-
private_key: ${{ secrets.APP_PRIVATE_KEY }}
29+
ref: ${{ github.ref }}
30+
fetch-depth: "1"
31+
submodules: "false"
32+
33+
- name: Store GitHub token in environment
34+
run: echo "GH_TOKEN=${{ secrets.GITHUB_TOKEN }}" >> "$GITHUB_ENV"
35+
shell: bash
3136

3237
- name: "Store version numbers in env variables"
3338
# The awk command to increase the version number was copied from

0 commit comments

Comments
 (0)