From a7f9f09d045c69fc2a1c5fad765078c243b0e0f3 Mon Sep 17 00:00:00 2001 From: Steven Kuhn Date: Sun, 6 Aug 2023 14:32:16 -0500 Subject: [PATCH] Attempt to test checkout for Meadow.Contracts --- .github/workflows/ci-build.yml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index d61a0ece..a09e619c 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -25,24 +25,13 @@ jobs: uses: actions/checkout@v3 with: path: Meadow.Core # we have to put this in a sub-folder so we can pull Contracts/Units to a parent folder - - - name: Determine Meadow.Contracts branch to use - id: pick_contracts_branch - shell: bash - run: | - BRANCH=${GITHUB_REF#refs/heads/} - if git ls-remote --exit-code --heads https://github.com/WildernessLabs/Meadow.Contracts ${BRANCH}; then - echo "::set-output name=branch::${BRANCH}" - else - echo "::set-output name=success::develop" - fi - name: Checkout Meadow.Contracts uses: actions/checkout@v3 with: repository: WildernessLabs/Meadow.Contracts path: Meadow.Contracts - ref: ${{ steps.pick_contracts_branch.outputs.branch }} + ref: testtesttest - name: Checkout Meadow.Units uses: actions/checkout@v3