mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2025-08-21 05:09:07 +08:00
lint
This commit is contained in:
parent
73ad88882e
commit
e8fb71c4bb
@ -1,4 +1,4 @@
|
||||
import {getRetentionDays, getRuntimeToken} from './config'
|
||||
import {getRuntimeToken} from './config'
|
||||
import jwt_decode from 'jwt-decode'
|
||||
import {Timestamp} from 'src/generated'
|
||||
|
||||
|
@ -60,7 +60,7 @@ export async function uploadArtifact(
|
||||
const createArtifactReq: CreateArtifactRequest = {
|
||||
workflowRunBackendId: backendIds.workflowRunBackendId,
|
||||
workflowJobRunBackendId: backendIds.workflowJobRunBackendId,
|
||||
name: name,
|
||||
name,
|
||||
version: 4
|
||||
}
|
||||
|
||||
@ -69,7 +69,7 @@ export async function uploadArtifact(
|
||||
if (expiresAt) {
|
||||
createArtifactReq.expiresAt = expiresAt
|
||||
}
|
||||
const createArtifactResp = await createArtifact(() =>
|
||||
const createArtifactResp = await createArtifact(async () =>
|
||||
artifactClient.CreateArtifact(createArtifactReq)
|
||||
)
|
||||
if (!createArtifactResp || !createArtifactResp.ok) {
|
||||
@ -82,11 +82,11 @@ export async function uploadArtifact(
|
||||
// TODO - Implement upload functionality
|
||||
|
||||
// finalize the artifact
|
||||
const finalizeArtifactResp = await finalizeArtifact(() =>
|
||||
const finalizeArtifactResp = await finalizeArtifact(async () =>
|
||||
artifactClient.FinalizeArtifact({
|
||||
workflowRunBackendId: backendIds.workflowRunBackendId,
|
||||
workflowJobRunBackendId: backendIds.workflowJobRunBackendId,
|
||||
name: name,
|
||||
name,
|
||||
size: '0' // TODO - Add size
|
||||
})
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user