From fe3f12440d4d5747f7d3365032ef67a1c2a6ba68 Mon Sep 17 00:00:00 2001 From: Sandeep Datta Date: Wed, 7 Aug 2024 10:35:39 -0700 Subject: [PATCH] Fixed workflow name. Fixed spelling. --- .github/workflows/ci-gh.yml | 2 +- .github/workflows/gh-build.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-gh.yml b/.github/workflows/ci-gh.yml index 64fcbf3..1331af9 100644 --- a/.github/workflows/ci-gh.yml +++ b/.github/workflows/ci-gh.yml @@ -1,4 +1,4 @@ -name: Build and test conda release package +name: Build and test concurrency: group: ${{ startsWith(github.ref_name, 'main') && format('unique-{0}', github.run_id) || format('ci-build-and-test-on-{0}-from-{1}', github.event_name, github.ref_name) }} diff --git a/.github/workflows/gh-build.yml b/.github/workflows/gh-build.yml index 676f471..951f6a8 100644 --- a/.github/workflows/gh-build.yml +++ b/.github/workflows/gh-build.yml @@ -71,12 +71,12 @@ jobs: DEPENDENCIES_FILE="" if [ -z "${{ inputs.dependencies-file }}" ]; then - DEPENDENCIES_FILE="${REPO_DIR}/continous_integration/no_dependencies.json" + DEPENDENCIES_FILE="${REPO_DIR}/continuous_integration/no_dependencies.json" else DEPENDENCIES_FILE="${REPO_DIR}/${{ inputs.dependencies-file }}" fi - ${REPO_DIR}/continous_integration/scripts/render-template.py ${REPO_DIR}/.github/actions/build/action.yml.j2 "${DEPENDENCIES_FILE}" ${REPO_DIR}/.github/actions/build/action.yml + ${REPO_DIR}/continuous_integration/scripts/render-template.py ${REPO_DIR}/.github/actions/build/action.yml.j2 "${DEPENDENCIES_FILE}" ${REPO_DIR}/.github/actions/build/action.yml - name: Dump templates shell: bash --noprofile --norc -xeuo pipefail {0}