Skip to content

Commit

Permalink
fix: action name
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Sep 19, 2024
1 parent d1b904d commit 4b3b0f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/kontinuous-ui/pre-deploy/01-deployment_event.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const { createClient } = require("@supabase/supabase-js")

module.exports = async (_manifests, _options, { config }) => {
const {
action,
actionCommandName,
gitSha,
projectName,
environment,
Expand All @@ -12,12 +12,12 @@ module.exports = async (_manifests, _options, { config }) => {

const supabase = createClient(
"https://dabwsunwcukreynmegja.supabase.co",
"XXXX"
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImRhYndzdW53Y3VrcmV5bm1lZ2phIiwicm9sZSI6ImFub24iLCJpYXQiOjE3MjU2NDQwMDksImV4cCI6MjA0MTIyMDAwOX0.8779ZywO5dvRLfMGMShlxBUqGeqC6WK4k3e0puBN7So"
)

const { error } = await supabase.from("deployments_logs").insert([
{
status: action,
status: actionCommandName,
commit_hash: gitSha,
project: projectName,
environment,
Expand Down

0 comments on commit 4b3b0f8

Please sign in to comment.