Skip to content

Commit

Permalink
CLOUDP-225724 Setup Step
Browse files Browse the repository at this point in the history
  • Loading branch information
fmenezes committed Feb 13, 2024
1 parent f58c1bd commit e5cd543
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
name: Run Updates
on:
push:
branches:
- master
# branches:
# - master
schedule:
- cron: "0 16 * * 1-5"
permissions:
Expand All @@ -14,7 +14,18 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
- run: choco install -y au
- name: install profile
run: |
$profileInstall = @'
# Chocolatey profile
$ChocolateyProfile = "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1"
if (Test-Path($ChocolateyProfile)) {
Import-Module "$ChocolateyProfile"
}
'@
$profileInstall | Out-File $profile
- run: ./setup/au_setup.ps1
- run: ./update_all.ps1
env:
au_Push: true
Expand Down

0 comments on commit e5cd543

Please sign in to comment.