Skip to content

Commit ede86e5

Browse files
🩹 [Patch]: Clean up call to main.ps1 (#9)
## Description This pull request includes a small change to the `action.yml` file. The change modifies the script execution method from sourcing the script to directly running it. Changes in `runs:` in file `action.yml`: * Modified the script execution method from sourcing the script (`. "${{ github.action_path }}\scripts\main.ps1"`) to directly running it (`${{ github.action_path }}\scripts\main.ps1`). ## 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
1 parent 2883b65 commit ede86e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ runs:
2929
Verbose: true
3030
Script: |
3131
# Debug environment
32-
. "${{ github.action_path }}\scripts\main.ps1"
32+
${{ github.action_path }}\scripts\main.ps1

0 commit comments

Comments
 (0)