Skip to content

Commit

Permalink
CI: Bicep install on runners - azcli workaround (#554)
Browse files Browse the repository at this point in the history
* Update release.yml

* Update ghpagesTest.yml
  • Loading branch information
Gordon Byers authored Mar 21, 2023
1 parent ae237b4 commit 0dfda7b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ghpagesTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ jobs:
if: ${{ github.event.pull_request.head.repo.fork }}
shell: pwsh
run: |
az config set bicep.use_binary_from_path=False
az bicep install
- name: Bicep build
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ jobs:

- name: Install Bicep
shell: pwsh
run: az bicep install
run: |
az config set bicep.use_binary_from_path=False
az bicep install
- name: Bicep build
shell: pwsh
Expand Down Expand Up @@ -177,7 +179,9 @@ jobs:
echo "ARTIFACTNAME=$ARTIFACTNAME" >> $Env:GITHUB_OUTPUT
- name: Install Bicep
run: az bicep install
run: |
az config set bicep.use_binary_from_path=False
az bicep install
- name: Bicep build
run: |
Expand Down

0 comments on commit 0dfda7b

Please sign in to comment.