From 8b8bcaf3e4b88c853d320b7bde8201a6f7b915bd Mon Sep 17 00:00:00 2001 From: autocloudarc Date: Thu, 29 Feb 2024 06:45:05 -0500 Subject: [PATCH] bicep(files): use absolute paths --- .github/workflows/deploy-az-resources.yml | 4 ++-- taskList.bicep | 7 +++++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy-az-resources.yml b/.github/workflows/deploy-az-resources.yml index 7971464..3beb903 100644 --- a/.github/workflows/deploy-az-resources.yml +++ b/.github/workflows/deploy-az-resources.yml @@ -31,8 +31,8 @@ env: rgpIacName: rgp-iac location: centralus stackName: 'stack-deploy-az-resources' - templateFile: "0079-bicep-exercises/0079-bicep-exercises/exercises-dev/main-exercises-dev.bicep" - templateParamFile: "./0079-bicep-exercises/0079-bicep-exercises/exercises-dev/main-exercises-dev.bicepparam" + templateFile: "/home/runner/work/0079-bicep-exercises/0079-bicep-exercises/exercises-dev/main-exercises-dev.bicep" + templateParamFile: "/home/runner/work/0079-bicep-exercises/0079-bicep-exercises/exercises-dev/main-exercises-dev.bicepparam" operation: deploy # allowed values:[ deploy | rollback ] jobs: diff --git a/taskList.bicep b/taskList.bicep index b1115cc..dc193d3 100644 --- a/taskList.bicep +++ b/taskList.bicep @@ -126,7 +126,7 @@ f. [] {Optional}: Delete the deployment stack with command reference cr2 above. ADVANCED TOPICS Session 1 of 2 -01. [] Sharing GitHub Actions +01. [x] Sharing GitHub Actions. See item 02 below. 02. [] Sharing GitHub Workflows with reusable workflows a. https://docs.github.com/en/actions/using-workflows/reusing-workflows b. https://docs.github.com/en/actions/using-workflows/reusing-workflows#calling-a-reusable-workflow @@ -145,7 +145,10 @@ Session 1 of 2 * The reusalbe workflow substitutes a job in the calling workflow 03. [x] Migrate from other CI/CD systems (Not immediately relevant, so skipping to focus on walk-throughs) -04. [] Building custome actions (relevant?) +04. [x] Building custome actions (relevant?): Skipping, since it requires knowledge of javascript and typescript. + See: + a. https://www.youtube.com/watch?v=N26xgQ7kLKo + b. https://www.youtube.com/watch?v=8KAN16uCgVI Session 2 of 2 05. [] GitHub API basics