diff --git a/.github/workflows/deploy.and.test.yml b/.github/workflows/deploy.and.test.yml index 5acb461939..4b829ce1da 100644 --- a/.github/workflows/deploy.and.test.yml +++ b/.github/workflows/deploy.and.test.yml @@ -28,7 +28,7 @@ jobs: # - name: Install required dependency frameworks # run: sf shane github src install --convert --githubuser apex-enterprise-patterns --repo fflib-apex-mocks --path sfdx-source/apex-mocks - name: Clone fflib-apex-mocks repo - run: mkdir temp && git clone git@github.com:apex-enterprise-patterns/fflib-apex-mocks.git "temp/fflib-apex-mocks" + run: mkdir temp && git clone https://github.com/apex-enterprise-patterns/fflib-apex-mocks.git "temp/fflib-apex-mocks" - name: Deploy and compile the fflib-apex-mocks codebase run: cd temp/fflib-apex-mocks && sf project deploy start --ignore-conflicts && cd ../.. - name: Deploy and compile the codebase @@ -39,7 +39,7 @@ jobs: # that could mask a test failure. A much more involved solution would've been to do a workflow_dispatch to the samplecode project. - name: Install sample code project to verify with # run: sf shane github src install --convert --githubuser apex-enterprise-patterns --repo fflib-apex-common-samplecode --path sfdx-source/apex-common-samplecode - run: git clone git@github.com:apex-enterprise-patterns/fflib-apex-mocks.git "temp/fflib-apex-common-samplecode" && cd temp/fflib-apex-common-samplecode && sf project deploy start --ignore-conflicts && cd ../.. + run: git clone https://github.com/apex-enterprise-patterns/fflib-apex-common-samplecode.git "temp/fflib-apex-common-samplecode" && cd temp/fflib-apex-common-samplecode && sf project deploy start --ignore-conflicts && cd ../.. - name: Run the core framework tests and the sample code project tests run: sf apex run test --wait 5 - name: Destroy scratch org