-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev: Fail pipeline if Helm or Hugo packages are not found
- Loading branch information
Showing
1 changed file
with
2 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -180,6 +180,7 @@ jobs: | |
- name: Upload Helm chart | ||
uses: actions/[email protected] | ||
with: | ||
if-no-files-found: error # Fail if no files are uploaded | ||
include-hidden-files: true # Folder begins with a dot, if not checked the whole folder is ignored | ||
name: helm-chart | ||
path: .cr-release-packages | ||
|
@@ -791,6 +792,7 @@ jobs: | |
- name: Upload build artifact | ||
uses: actions/[email protected] | ||
with: | ||
if-no-files-found: error # Fail if no files are uploaded | ||
name: hugo | ||
path: docs/public | ||
|
||
|