Skip to content

Commit

Permalink
Add checkout token to VCV CI
Browse files Browse the repository at this point in the history
  • Loading branch information
danngreen committed Oct 19, 2023
1 parent d8484ae commit 88cdb86
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/build_vcv_plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,10 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ secrets.CHECKOUT_TOKEN }}
- name: Build plugin
run: |
export PLUGIN_DIR=$GITHUB_WORKSPACE/vcv
Expand All @@ -79,9 +80,10 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ secrets.CHECKOUT_TOKEN }}
- name: Build plugin
run: |
export PLUGIN_DIR=$GITHUB_WORKSPACE/vcv
Expand All @@ -100,9 +102,10 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ secrets.CHECKOUT_TOKEN }}
- name: Get Rack-SDK
run: |
pushd $HOME
Expand All @@ -128,9 +131,10 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ secrets.CHECKOUT_TOKEN }}
- name: Get Rack-SDK
run: |
pushd $HOME
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/run_vcv_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: 'recursive'
token: ${{ secrets.CHECKOUT_TOKEN }}

- name: Install windows dependencies (MSYS2)
if: matrix.os.os =='windows'
Expand Down

0 comments on commit 88cdb86

Please sign in to comment.