Skip to content

Commit

Permalink
🩹 [Patch]: Add nightly run workflow (#13)
Browse files Browse the repository at this point in the history
## Description

- Add nightly run workflow
- Fix code structure to align with PSModule module def.

## Type of change

<!-- Use the check-boxes [x] on the options that are relevant. -->

- [ ] 📖 [Docs]
- [ ] 🪲 [Fix]
- [x] 🩹 [Patch]
- [ ] ⚠️ [Security fix]
- [ ] 🚀 [Feature]
- [ ] 🌟 [Breaking change]

## Checklist

<!-- Use the check-boxes [x] on the options that are relevant. -->

- [x] I have performed a self-review of my own code
- [x] I have commented my code, particularly in hard-to-understand areas
  • Loading branch information
MariusStorhaug committed Jul 4, 2024
1 parent e055e67 commit d2ff253
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions .github/workflows/Nightly-Run.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Nightly run

on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'

permissions:
contents: write
issues: write
pull-requests: write
statuses: write

jobs:
Process-PSModule:
uses: PSModule/Process-PSModule/.github/workflows/workflow.yml@v1
secrets: inherit
File renamed without changes.
2 changes: 1 addition & 1 deletion src/public/Install-NerdFont.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function Install-NerdFont {
[Scope] $Scope = 'CurrentUser'
)

DynamicParam {
dynamicparam {
$DynamicParamDictionary = New-DynamicParamDictionary

$dynPath = @{
Expand Down

0 comments on commit d2ff253

Please sign in to comment.