diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2022-10-15 00:49:20 -0600 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2022-10-15 00:50:29 -0600 |
| commit | bb2bc6502f3eb5aa3132f88ca503b3bb957b95bb (patch) | |
| tree | be39d73e74f3f19bc808eede1941087e7e45c1cf /.github/workflows/release.yml | |
| parent | a5869d026ea9753fcb3d2e9dc08c009947e27092 (diff) | |
use token when cloning repository so release script can push [no ci]
Diffstat (limited to '.github/workflows/release.yml')
| -rw-r--r-- | .github/workflows/release.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 61270d5c..9571cfe5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,6 +26,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 + with: + token: ${{ secrets[format('GH_TOKEN_{0}', github.actor)] }} - name: Install Ruby uses: ruby/setup-ruby@v1 with: |
