mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2025-08-23 03:49:05 +08:00
Simplify to id instead of ArtifactId
This commit is contained in:
parent
d830aca920
commit
5fea8616de
12
.github/workflows/artifact-tests.yml
vendored
12
.github/workflows/artifact-tests.yml
vendored
@ -122,14 +122,14 @@ jobs:
|
||||
}
|
||||
|
||||
const artifactNames = artifacts.map(artifact => artifact.name)
|
||||
if (!artifactNames.contains('my-artifact-ubuntu-latest')){
|
||||
throw new Error('Expected artifact list to contain an artifact named my-artifact-ubuntu-latest but it did not find one')
|
||||
if (!artifactNames.includes('my-artifact-ubuntu-latest')){
|
||||
throw new Error("Expected artifact list to contain an artifact named my-artifact-ubuntu-latest but it's missing")
|
||||
}
|
||||
if (!artifactNames.contains('my-artifact-windows-latest')){
|
||||
throw new Error('Expected artifact list to contain an artifact named my-artifact-windows-latest but it did not find one')
|
||||
if (!artifactNames.includes('my-artifact-windows-latest')){
|
||||
throw new Error("Expected artifact list to contain an artifact named my-artifact-windows-latest but it's missing")
|
||||
}
|
||||
if (!artifactNames.contains('my-artifact-macos-latest')){
|
||||
throw new Error('Expected artifact list to contain an artifact named my-artifact-macos-latest but it did not find one')
|
||||
if (!artifactNames.includes('my-artifact-macos-latest')){
|
||||
throw new Error("Expected artifact list to contain an artifact named my-artifact-macos-latest but it's missing")
|
||||
}
|
||||
|
||||
console.log('Successfully listed artifacts that were uploaded')
|
||||
|
@ -29,7 +29,7 @@ export async function listArtifacts(
|
||||
repositoryName: string,
|
||||
token: string
|
||||
): Promise<ListArtifactsResponse> {
|
||||
info(`Fetching artifact list for workflow run ${workflowRunId} in repository ${repositoryOwner}\\${repositoryName}`)
|
||||
info(`Fetching artifact list for workflow run ${workflowRunId} in repository ${repositoryOwner}/${repositoryName}`)
|
||||
|
||||
const artifacts: Artifact[] = []
|
||||
const [retryOpts, requestOpts] = getRetryOptions(
|
||||
@ -73,7 +73,7 @@ export async function listArtifacts(
|
||||
listArtifactResponse.artifacts.forEach(artifact => {
|
||||
artifacts.push({
|
||||
name: artifact.name,
|
||||
artifactId: artifact.id,
|
||||
id: artifact.id,
|
||||
url: artifact.url,
|
||||
size: artifact.size_in_bytes
|
||||
})
|
||||
@ -100,7 +100,7 @@ export async function listArtifacts(
|
||||
listArtifactResponse.artifacts.forEach(artifact => {
|
||||
artifacts.push({
|
||||
name: artifact.name,
|
||||
artifactId: artifact.id,
|
||||
id: artifact.id,
|
||||
url: artifact.url,
|
||||
size: artifact.size_in_bytes
|
||||
})
|
||||
|
@ -114,7 +114,7 @@ export interface Artifact {
|
||||
/**
|
||||
* The ID of the artifact
|
||||
*/
|
||||
artifactId: number
|
||||
id: number
|
||||
|
||||
/**
|
||||
* The URL of the artifact
|
||||
|
Loading…
x
Reference in New Issue
Block a user