Skip to content

Commit

Permalink
bicep(files): use absolute paths
Browse files Browse the repository at this point in the history
  • Loading branch information
autocloudarc committed Feb 29, 2024
1 parent 4b0446a commit 8b8bcaf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-az-resources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
7 changes: 5 additions & 2 deletions taskList.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 8b8bcaf

Please sign in to comment.