88 workflow_dispatch :
99 inputs :
1010 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)'
1212 required : true
1313 type : string
1414
1515env :
16- NODE_VERSION : " 20 "
16+ NODE_VERSION : ' 20 '
1717
1818jobs :
1919 release-stable : # stable releases can only be manually triggered
@@ -57,11 +57,11 @@ jobs:
5757 const isMember = isAdmin || isClientLibs
5858 core.setOutput('is_team_member', isMember ? 'true' : 'false')
5959
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
6565
6666 - uses : actions/checkout@v5
6767 with :
7070 - uses : actions/setup-node@v4
7171 with :
7272 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'
7575
7676 # Ensure npm 11.5.1 or later is installed for trusted publishing support
7777 - name : Update npm
@@ -250,8 +250,8 @@ jobs:
250250 uses : actions/setup-node@v4
251251 with :
252252 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'
255255
256256 # Ensure npm 11.5.1 or later is installed for trusted publishing support
257257 - name : Update npm
@@ -279,7 +279,7 @@ jobs:
279279 uses : ./.github/workflows/slack-notify.yml
280280 secrets : inherit
281281 with :
282- subject : " Stable Release"
282+ subject : ' Stable Release'
283283
284284 notify-canary-failure :
285285 name : Notify Slack for Canary failure
@@ -288,4 +288,4 @@ jobs:
288288 uses : ./.github/workflows/slack-notify.yml
289289 secrets : inherit
290290 with :
291- subject : " Canary Release"
291+ subject : ' Canary Release'
0 commit comments