diff options
author | Spartan322 <Megacake1234@gmail.com> | 2023-09-23 01:58:11 +0200 |
---|---|---|
committer | Spartan322 <Megacake1234@gmail.com> | 2023-09-23 04:12:25 +0200 |
commit | 348668afee5bfbbc376d0615b51dca210213c1ec (patch) | |
tree | 6b3cbbc9f6d5e793d6c337023e95d94105ca888f /.github/workflows/builds.yml | |
parent | 977661f6f4301be19fa64abfc6cda5040c3899b1 (diff) |
Move actions and scripts to separate reusable repos
Diffstat (limited to '.github/workflows/builds.yml')
-rw-r--r-- | .github/workflows/builds.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 0e0bcfe..e5b02a3 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -64,9 +64,10 @@ jobs: submodules: recursive - name: Setup OpenVic-Dataloader build cache - uses: ./.github/actions/dataloader-cache + uses: OpenVicProject/openvic-cache@master with: cache-name: ${{ matrix.identifier }} + base-branch: ${{ env.OVDL_BASE_BRANCH }} continue-on-error: true - name: Set up Python @@ -93,10 +94,10 @@ jobs: - name: Setup MinGW for Windows/MinGW build if: ${{ matrix.platform == 'windows' }} - uses: ./.github/actions/mingw-cache + uses: OpenVicProject/mingw-cache@master - name: Compile Dataloader - uses: ./.github/actions/dataloader-build + uses: OpenVicProject/openvic-build@master with: platform: ${{ matrix.platform }} target: ${{ matrix.target }} |