Skip to content

Commit 1e41aef

Browse files
🩹 [Patch]: Upload artifacts are now included on Build-PSModule (#54)
## Description - Remove upload artifact from build job as it is now included on `Build-PSModule` action. ## 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 fb0137b commit 1e41aef

File tree

2 files changed

+0
-32
lines changed

2 files changed

+0
-32
lines changed

.github/workflows/CI.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -173,22 +173,6 @@ jobs:
173173
ModulesOutputPath: ${{ inputs.ModulesOutputPath }}
174174
DocsOutputPath: ${{ inputs.DocsOutputPath }}
175175

176-
- name: Upload module artifact
177-
uses: actions/upload-artifact@v4
178-
with:
179-
name: module
180-
path: ${{ inputs.ModulesOutputPath }}
181-
if-no-files-found: error
182-
retention-days: 1
183-
184-
- name: Upload docs artifact
185-
uses: actions/upload-artifact@v4
186-
with:
187-
name: docs
188-
path: ${{ inputs.DocsOutputPath }}
189-
if-no-files-found: error
190-
retention-days: 1
191-
192176
# This is necessary as there is no way to get output from a matrix job
193177
TestModule-pwsh-ubuntu-latest:
194178
name: Test module (pwsh, ubuntu-latest)

.github/workflows/workflow.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -180,22 +180,6 @@ jobs:
180180
ModulesOutputPath: ${{ inputs.ModulesOutputPath }}
181181
DocsOutputPath: ${{ inputs.DocsOutputPath }}
182182

183-
- name: Upload module artifact
184-
uses: actions/upload-artifact@v4
185-
with:
186-
name: module
187-
path: ${{ inputs.ModulesOutputPath }}
188-
if-no-files-found: error
189-
retention-days: 1
190-
191-
- name: Upload docs artifact
192-
uses: actions/upload-artifact@v4
193-
with:
194-
name: docs
195-
path: ${{ inputs.DocsOutputPath }}
196-
if-no-files-found: error
197-
retention-days: 1
198-
199183
#This is necessary as there is no way to get output from a matrix job
200184
TestModule-pwsh-ubuntu-latest:
201185
name: Test module (pwsh, ubuntu-latest)

0 commit comments

Comments
 (0)