8000
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 8028575 commit de45815Copy full SHA for de45815
.github/workflows/mirror-postgrest.yml
@@ -0,0 +1,33 @@
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
+ permissions:
27
+ contents: read
28
+ packages: write
29
+ id-token: write
30
+ uses: supabase/cli/.github/workflows/mirror-image.yml@main
31
32
+ image: postgrest/postgrest:v${{ needs.version.outputs.postgrest_release }}
33
+ secrets: inherit
0 commit comments