From 75f496538a4c4443e501e06d61bd693e94c18b87 Mon Sep 17 00:00:00 2001 From: Justin Poehnelt Date: Tue, 10 May 2022 11:24:21 -0600 Subject: [PATCH] build: checkout with credentials (#324) --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 25479334..ab379838 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,7 +25,10 @@ jobs: - uses: actions/setup-node@v2 with: node-version: '14' - - uses: actions/checkout@v2 + - name: Checkout + uses: actions/checkout@v3 + with: + token: ${{ secrets.SYNCED_GITHUB_TOKEN_REPO }} - uses: actions/cache@v2 with: path: ~/.npm