Skip to content

Commit ea23d3a

Browse files
committed
fix: ref the var correct
1 parent b079b59 commit ea23d3a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,19 +43,19 @@ jobs:
4343
target: production
4444
build-args: |
4545
${{ steps.args.outputs.result }}
46-
tags: supabase/postgres:${{ steps.settings.outputs.postgres_version }}
46+
tags: supabase/postgres:${{ steps.settings.outputs.postgres-version }}
4747
cache-from: |
48-
type=gha,scope=${{ github.ref_name }}-${{ steps.settings.outputs.postgres_version }}-${{ matrix.arch }}
49-
type=gha,scope=${{ github.base_ref }}-${{ steps.settings.outputs.postgres_version }}-${{ matrix.arch }}
50-
cache-to: type=gha,mode=max,scope=${{ github.ref_name }}-${{ steps.settings.outputs.postgres_version }}-${{ matrix.arch }}
48+
type=gha,scope=${{ github.ref_name }}-${{ steps.settings.outputs.postgres-version }}-${{ matrix.arch }}
49+
type=gha,scope=${{ github.base_ref }}-${{ steps.settings.outputs.postgres-version }}-${{ matrix.arch }}
50+
cache-to: type=gha,mode=max,scope=${{ github.ref_name }}-${{ steps.settings.outputs.postgres-version }}-${{ matrix.arch }}
5151

5252
- name: Start Postgres
5353
run: |
5454
docker run --rm --pull=never \
5555
-e POSTGRES_PASSWORD=${{ env.POSTGRES_PASSWORD }} \
5656
-p ${{ env.POSTGRES_PORT }}:5432 \
5757
--name supabase_postgres \
58-
-d supabase/postgres:${{ steps.settings.outputs.postgres_version }}
58+
-d supabase/postgres:${{ steps.settings.outputs.postgres-version }}
5959
- name: Install psql
6060
run: |
6161
sudo apt update

0 commit comments

Comments
 (0)