-
Notifications
You must be signed in to change notification settings - Fork 18
89 lines (77 loc) · 2.67 KB
/
update-packagejson.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# Update package App.json
name: Update Package Manifests
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
on:
workflow_dispatch:
push:
branches: ["main"]
paths:
- "scripts/Update-PackageJson.ps1"
- "**/App.json"
schedule:
- cron: '15 2 * * *'
jobs:
update-json:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install and cache PowerShell modules
id: psmodulecache
uses: potatoqualitee/[email protected]
with:
modules-to-cache: "Evergreen::, VcRedist::"
updatable: true
shell: pwsh
- name: List Modules
id: list-modules
shell: pwsh
run: |
foreach ($module in @("Evergreen", "VcRedist")) {
$Version = (Get-Module -Name $module -ListAvailable | Select-Object -First 1).Version.ToString()
Write-Host "$module version: $Version"
}
- name: Update package JSON
id: update-json
shell: pwsh
run: |
$params = @{
Path = "${{ github.workspace }}"
PackageFolder = "packages"
PackageManifest = "App.json"
InstallManifest = "Install.json"
Verbose = $false
}
. "${{ github.workspace }}/scripts/Update-PackageJson.ps1" @params
# Format the date number for the commit message
- name: Get date
id: get-date
shell: pwsh
run: |
echo "::set-output name=date::$(Get-Date -Format "yyyy.MM.dd")"
- name: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPGKEY }}
passphrase: ${{ secrets.GPGPASSPHRASE }}
git_user_signingkey: true
git_commit_gpgsign: true
git_config_global: true
git_tag_gpgsign: true
git_push_gpgsign: false
git_committer_name: ${{ secrets.COMMIT_NAME }}
git_committer_email: ${{ secrets.COMMIT_EMAIL }}
- name: Commit changes
id: commit
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Update json ${{ steps.get-date.outputs.date }}.${{ github.run_number }} ${{ github.job }}"
commit_user_name: ${{ secrets.COMMIT_NAME }}
commit_user_email: ${{ secrets.COMMIT_EMAIL }}
- name: "Run if changes have been detected"
if: steps.commit.outputs.changes_detected == 'true'
run: echo "Changes committed."
- name: "Run if no changes have been detected"
if: steps.commit.outputs.changes_detected == 'false'
run: echo "No changes detected."