We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d179480 commit 5d35b38Copy full SHA for 5d35b38
.github/workflows/version-release.yml
@@ -98,6 +98,20 @@ jobs:
98
-H "Content-Type: application/zip" \
99
--data-binary @"$ZIP_NAME"
100
101
+ - name: Insert release metadata into Supabase
102
+ env:
103
+ SUPABASE_URL: ${{ secrets.SUPABASE_URL }}
104
+ SUPABASE_KEY: ${{ secrets.SUPABASE_ANON_KEY }}
105
+ run: |
106
+ DATA=$(jq -nc --arg version "$TAG_NAME" '{version:$version}')
107
+ curl -X POST "$SUPABASE_URL/rest/v1/wasplib" \
108
+ -H "apikey: $SUPABASE_KEY" \
109
+ -H "Authorization: Bearer $SUPABASE_KEY" \
110
+ -H "Content-Type: application/json" \
111
+ -H "Accept-Profile: scripts" \
112
+ -d "$DATA"
113
+
114
115
- name: Discord notification
116
shell: bash
117
run: |
0 commit comments