We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 244eeba + 20a4b8a commit 8fb09a4Copy full SHA for 8fb09a4
.github/workflows/upload_docker.pr.yml
@@ -19,15 +19,15 @@ jobs:
19
uses: actions/github-script@v7
20
with:
21
script: |
22
- var artifacts = await github.actions.listWorkflowRunArtifacts({
+ var artifacts = await github.rest.actions.listWorkflowRunArtifacts({
23
owner: context.repo.owner,
24
repo: context.repo.repo,
25
run_id: ${{github.event.workflow_run.id }},
26
});
27
var matchArtifact = artifacts.data.artifacts.filter((artifact) => {
28
return artifact.name == "pr"
29
})[0];
30
- var download = await github.actions.downloadArtifact({
+ var download = await github.rest.actions.downloadArtifact({
31
32
33
artifact_id: matchArtifact.id,
0 commit comments