Skip to content

Commit 63e7978

Browse files
🩹 [Patch]: Fix path separator in action script execution (#32)
## Description This pull request includes a minor change to the `action.yml` file. The change updates the path format for the script execution from backslashes to forward slashes. * [`action.yml`](diffhunk://#diff-1243c5424efaaa19bd8e813c5e6f6da46316e63761421b3e5f5c8ced9a36e6b6L42-R42): Updated the script path from `\scripts\main.ps1` to `/scripts/main.ps1` to use forward slashes. ## Type of change <!-- Use the check-boxes [x] on the options that are relevant. --> - [ ] 📖 [Docs] - [x] 🪲 [Fix] - [ ] 🩹 [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 41e8d81 commit 63e7978

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
@@ -39,4 +39,4 @@ runs:
3939
WorkingDirectory: ${{ inputs.WorkingDirectory }}
4040
Script: |
4141
# Initialize-PSModule
42-
${{ github.action_path }}\scripts\main.ps1
42+
${{ github.action_path }}/scripts/main.ps1

0 commit comments

Comments
 (0)