8
8
workflow_dispatch :
9
9
inputs :
10
10
version_specifier :
11
- description : " Semver bump (patch|minor|major|pre*) or exact version (v1.2.3)"
11
+ description : ' Semver bump (patch|minor|major|pre*) or exact version (v1.2.3)'
12
12
required : true
13
13
type : string
14
14
15
15
env :
16
- NODE_VERSION : " 20 "
16
+ NODE_VERSION : ' 20 '
17
17
18
18
jobs :
19
19
release-stable : # stable releases can only be manually triggered
@@ -57,11 +57,11 @@ jobs:
57
57
const isMember = isAdmin || isClientLibs
58
58
core.setOutput('is_team_member', isMember ? 'true' : 'false')
59
59
60
- - name : Fail if not authorized
61
- if : steps.team-check.outputs.is_team_member != 'true'
62
- run : |
63
- echo "You must be a member of @supabase/admin or @supabase/client-libs."
64
- exit 1
60
+ # - name: Fail if not authorized
61
+ # if: steps.team-check.outputs.is_team_member != 'true'
62
+ # run: |
63
+ # echo "You must be a member of @supabase/admin or @supabase/client-libs."
64
+ # exit 1
65
65
66
66
- uses : actions/checkout@v5
67
67
with :
70
70
- uses : actions/setup-node@v4
71
71
with :
72
72
node-version : ${{ env.NODE_VERSION }}
73
- cache : " npm"
74
- registry-url : " https://registry.npmjs.org"
73
+ cache : ' npm'
74
+ registry-url : ' https://registry.npmjs.org'
75
75
76
76
# Ensure npm 11.5.1 or later is installed for trusted publishing support
77
77
- name : Update npm
@@ -250,8 +250,8 @@ jobs:
250
250
uses : actions/setup-node@v4
251
251
with :
252
252
node-version : ${{ env.NODE_VERSION }}
253
- cache : " npm"
254
- registry-url : " https://registry.npmjs.org"
253
+ cache : ' npm'
254
+ registry-url : ' https://registry.npmjs.org'
255
255
256
256
# Ensure npm 11.5.1 or later is installed for trusted publishing support
257
257
- name : Update npm
@@ -279,7 +279,7 @@ jobs:
279
279
uses : ./.github/workflows/slack-notify.yml
280
280
secrets : inherit
281
281
with :
282
- subject : " Stable Release"
282
+ subject : ' Stable Release'
283
283
284
284
notify-canary-failure :
285
285
name : Notify Slack for Canary failure
@@ -288,4 +288,4 @@ jobs:
288
288
uses : ./.github/workflows/slack-notify.yml
289
289
secrets : inherit
290
290
with :
291
- subject : " Canary Release"
291
+ subject : ' Canary Release'
0 commit comments