Skip to content

Commit 069de6d

Browse files
committed
chore(workflows): fix CI/CD! Woop woop!
1 parent b39fd8d commit 069de6d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/on-commit.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,6 @@ jobs:
1313
- name: Build artifact
1414
run: rojo build default.project.json -o Artifact.rbxm
1515
- name: Deploy artifact
16-
run: lune run deploy Artifact.rbxm
16+
run: lune run deploy Artifact.rbxm
17+
env:
18+
SDK_ARTIFACT_UPLOAD_SECRET: ${{secrets.SDK_ARTIFACT_UPLOAD_SECRET}}

.lune/deploy.luau

-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ local net = require("@lune/net")
33
local fs = require("@lune/fs")
44

55
local artifact = process.args[1]
6-
print("process.env.GITHUB_SHA: ", process.env.GITHUB_SHA)
7-
print("process.env.SDK_ARTIFACT_UPLOAD_SECRET: ", string.sub(process.env.SDK_ARTIFACT_UPLOAD_SECRET or "", 0, 10) .. "***")
86
local commitHash = process.env.GITHUB_SHA
97
local authorization = process.env.SDK_ARTIFACT_UPLOAD_SECRET
108

0 commit comments

Comments
 (0)