Skip to content

Commit

Permalink
Fix action refs
Browse files Browse the repository at this point in the history
  • Loading branch information
mazhelez committed Dec 19, 2024
1 parent 5795eff commit b025bc1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ jobs:
- name: Read settings
id: ReadSettings
if: ${{ env._updateMultipleBranches }}
uses: microsoft/AL-Go-Actions/ReadSettings@update-al-go-multiple-branches
uses: microsoft/AL-Go-Actions/ReadSettings@main
with:
shell: powershell
get: scheduleSettings,templateUrl

- name: Get Supported Branches
if: ${{ env._updateMultipleBranches }}
id: GetSupportedBranches
uses: microsoft/AL-Go-Actions/GetGitBranches@update-al-go-multiple-branches
uses: microsoft/AL-Go-Actions/GetGitBranches@main
with:
shell: powershell
includeBranches: ${{ join(fromJson(env.scheduleSettings).includeBranches, ',') }}
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
runs-on: [ windows-latest ]
strategy:
matrix:
branch: ${{ fromJson(needs.Initialize:.outputs.SupportedBranches) }}
branch: ${{ fromJson(needs.Initialize.outputs.SupportedBranches) }}
fail-fast: false

steps:
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
token: ${{ fromJson(steps.ReadSecrets.outputs.Secrets).ghTokenWorkflow }}
downloadLatest: ${{ env.downloadLatest }}
update: 'Y'
templateUrl: ${{ needs.Initialize:.outputs.templateUrl }}
templateUrl: ${{ needs.Initialize.outputs.templateUrl }}
directCommit: ${{ env.directCommit }}
updateBranch: ${{ matrix.branch }}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ jobs:
- name: Read settings
id: ReadSettings
if: ${{ env._updateMultipleBranches }}
uses: microsoft/AL-Go-Actions/ReadSettings@update-al-go-multiple-branches
uses: microsoft/AL-Go-Actions/ReadSettings@main
with:
shell: powershell
get: scheduleSettings,templateUrl

- name: Get Supported Branches
if: ${{ env._updateMultipleBranches }}
id: GetSupportedBranches
uses: microsoft/AL-Go-Actions/GetGitBranches@update-al-go-multiple-branches
uses: microsoft/AL-Go-Actions/GetGitBranches@main
with:
shell: powershell
includeBranches: ${{ join(fromJson(env.scheduleSettings).includeBranches, ',') }}
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
runs-on: [ windows-latest ]
strategy:
matrix:
branch: ${{ fromJson(needs.Initialize:.outputs.SupportedBranches) }}
branch: ${{ fromJson(needs.Initialize.outputs.SupportedBranches) }}
fail-fast: false

steps:
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
token: ${{ fromJson(steps.ReadSecrets.outputs.Secrets).ghTokenWorkflow }}
downloadLatest: ${{ env.downloadLatest }}
update: 'Y'
templateUrl: ${{ needs.Initialize:.outputs.templateUrl }}
templateUrl: ${{ needs.Initialize.outputs.templateUrl }}
directCommit: ${{ env.directCommit }}
updateBranch: ${{ matrix.branch }}

Expand Down

0 comments on commit b025bc1

Please sign in to comment.