mirror of https://github.com/actions/toolkit
Simplify to just name instead of artifactName
parent
22298b02f4
commit
d830aca920
|
@ -122,13 +122,13 @@ jobs:
|
||||||
}
|
}
|
||||||
|
|
||||||
const artifactNames = artifacts.map(artifact => artifact.name)
|
const artifactNames = artifacts.map(artifact => artifact.name)
|
||||||
if (!artifactName.contains('my-artifact-ubuntu-latest')){
|
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')
|
throw new Error('Expected artifact list to contain an artifact named my-artifact-ubuntu-latest but it did not find one')
|
||||||
}
|
}
|
||||||
if (!artifactName.contains('my-artifact-windows-latest')){
|
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')
|
throw new Error('Expected artifact list to contain an artifact named my-artifact-windows-latest but it did not find one')
|
||||||
}
|
}
|
||||||
if (!artifactName.contains('my-artifact-macos-latest')){
|
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')
|
throw new Error('Expected artifact list to contain an artifact named my-artifact-macos-latest but it did not find one')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -72,7 +72,7 @@ export async function listArtifacts(
|
||||||
// Iterate over the first page
|
// Iterate over the first page
|
||||||
listArtifactResponse.artifacts.forEach(artifact => {
|
listArtifactResponse.artifacts.forEach(artifact => {
|
||||||
artifacts.push({
|
artifacts.push({
|
||||||
artifactName: artifact.name,
|
name: artifact.name,
|
||||||
artifactId: artifact.id,
|
artifactId: artifact.id,
|
||||||
url: artifact.url,
|
url: artifact.url,
|
||||||
size: artifact.size_in_bytes
|
size: artifact.size_in_bytes
|
||||||
|
@ -99,7 +99,7 @@ export async function listArtifacts(
|
||||||
|
|
||||||
listArtifactResponse.artifacts.forEach(artifact => {
|
listArtifactResponse.artifacts.forEach(artifact => {
|
||||||
artifacts.push({
|
artifacts.push({
|
||||||
artifactName: artifact.name,
|
name: artifact.name,
|
||||||
artifactId: artifact.id,
|
artifactId: artifact.id,
|
||||||
url: artifact.url,
|
url: artifact.url,
|
||||||
size: artifact.size_in_bytes
|
size: artifact.size_in_bytes
|
||||||
|
|
|
@ -109,7 +109,7 @@ export interface Artifact {
|
||||||
/**
|
/**
|
||||||
* The name of the artifact
|
* The name of the artifact
|
||||||
*/
|
*/
|
||||||
artifactName: string
|
name: string
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The ID of the artifact
|
* The ID of the artifact
|
||||||
|
|
Loading…
Reference in New Issue