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 91a96e5 commit becc890Copy full SHA for becc890
.github/workflows/mirror-postgrest.yml
@@ -0,0 +1,29 @@
1
+name: Mirror PostgREST
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - develop
7
+ paths:
8
+ - ".github/workflows/mirror-postgrest.yml"
9
+ - "common.vars*"
10
11
+jobs:
12
+ version:
13
+ runs-on: ubuntu-latest
14
+ outputs:
15
+ postgrest_release: ${{ steps.args.outputs.result }}
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - id: args
19
+ uses: mikefarah/yq@master
20
+ with:
21
+ cmd: yq '.postgrest_release' 'ansible/vars.yml'
22
23
+ mirror:
24
+ needs:
25
+ - version
26
+ uses: supabase/cli/.github/workflows/mirror-image.yml@main
27
28
+ image: postgrest/postgrest:v${{ needs.version.outputs.postgrest_release }}
29
+ secrets: inherit
0 commit comments