You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ To improve the wiki, create an issue.
39
39
40
40
This project and repository does not have necessary things to do i18ns and/or translations.
41
41
42
-
If you want to do i18ns and/or translations on the documentations, documents and/or wiki, please see section "[Documentations, Documents & Wiki](#documentations-documents--wiki)".
42
+
If you want to do i18ns and/or translations on the documentations, documents and/or wiki, please see the section "[Documentations, Documents & Wiki](#documentations-documents--wiki)".
Copy file name to clipboardExpand all lines: hugoalh.GitHubActionsToolkit/module/artifact.psm1
+29-15Lines changed: 29 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -11,19 +11,19 @@ Import-Module -Name (
11
11
.SYNOPSIS
12
12
GitHub Actions - Export Artifact
13
13
.DESCRIPTION
14
-
Export artifact to persist data and/or share with future job in the same workflow.
14
+
Export artifact to persist the data and/or share with the future jobs in the same workflow.
15
15
.PARAMETERName
16
16
Name of the artifact.
17
17
.PARAMETERPath
18
-
Paths to the files that need to export as artifact.
18
+
Paths of the files that need to export as artifact.
19
19
.PARAMETERLiteralPath
20
-
Literal paths to the files that need to export as artifact.
20
+
Literal paths of the files that need to export as artifact.
21
21
.PARAMETERBaseRoot
22
22
Absolute literal path of the base root directory of the files for control files structure.
23
23
.PARAMETERContinueOnIssue
24
-
Whether the export should continue in the event of files fail to export; If not set and issue is encountered, export will stop and queued files will not export; The partial artifact availables which include files up until the issue; If set and issue is encountered, the issue file will ignore and skip, and queued files will still export; The partial artifact availables which include everything but exclude issue files.
24
+
Whether the export should continue in the event of files fail to export; If not set and issue is encountered, export will stop and queued files will not export, the partial artifact availables which include files up until the issue; If set and issue is encountered, the issue file will ignore and skip, and queued files will still export, the partial artifact availables which include everything but exclude issue files.
25
25
.PARAMETERRetentionTime
26
-
Duration of the artifact become expire, by days.
26
+
Retention time of the artifact, by days.
27
27
.OUTPUTS
28
28
[PSCustomObject] Metadata of the exported artifact.
[Parameter(ValueFromPipelineByPropertyName=$True)][ValidateScript({ [System.IO.Path]::IsPathRooted($_) -and (Test-Path-LiteralPath $_-PathType 'Container') }, ErrorMessage ='`{0}` is not an exist and valid GitHub Actions artifact base root!')][Alias('Root')][String]$BaseRoot=$Env:GITHUB_WORKSPACE,
Copy file name to clipboardExpand all lines: hugoalh.GitHubActionsToolkit/module/cache.psm1
+15-31Lines changed: 15 additions & 31 deletions
Original file line number
Diff line number
Diff line change
@@ -11,9 +11,9 @@ Import-Module -Name (
11
11
.SYNOPSIS
12
12
GitHub Actions - Restore Cache
13
13
.DESCRIPTION
14
-
Restore cache that shared data from past job in the same workflow.
14
+
Restore cache that shared the data from the past jobs in the same workflow.
15
15
.PARAMETERKey
16
-
Key of the cache.
16
+
Keys of the cache.
17
17
.PARAMETERPath
18
18
Paths of the cache.
19
19
.PARAMETERLiteralPath
@@ -24,6 +24,8 @@ Whether to not use Azure Blob SDK to download the cache that stored on the Azure
24
24
Number of parallel downloads of the cache (only for Azure SDK).
25
25
.PARAMETERTimeout
26
26
Maximum time for each download request of the cache, by seconds (only for Azure SDK).
27
+
.PARAMETERSegmentTimeout
28
+
Maximum time for each segment download request of the cache, by minutes; This allows the segment download to get aborted and hence allow the job to proceed with a cache miss.
0 commit comments