Fix: Upload Artifact issue (#5271)

This commit is contained in:
Louis Lam
2024-10-29 22:10:05 +08:00
committed by GitHub
parent 06a272c119
commit 0254e72177
6 changed files with 51 additions and 5 deletions

View File

@@ -0,0 +1,6 @@
import { uploadArtifacts } from "./lib.mjs";
const version = process.env.RELEASE_VERSION;
const githubToken = process.env.RELEASE_GITHUB_TOKEN;
uploadArtifacts(version, githubToken);