Skip to content

Commit 616882c

Browse files
committed
sigh
1 parent 036c23e commit 616882c

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/release.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,6 @@ jobs:
103103
strategy:
104104
fail-fast: false
105105
matrix:
106-
edgedb-server-version:
107-
- 6
108106
include: ${{ fromJson(needs.build-wheels-matrix.outputs.include) }}
109107

110108
defaults:
@@ -113,6 +111,7 @@ jobs:
113111

114112
env:
115113
PIP_DISABLE_PIP_VERSION_CHECK: 1
114+
EDGEDB_SERVER_VERSION: 6
116115

117116
steps:
118117
- uses: actions/checkout@v3
@@ -138,15 +137,15 @@ jobs:
138137
if: runner.os != 'Linux'
139138
uses: edgedb/setup-edgedb@v1
140139
with:
141-
server-version: ${{ matrix.edgedb-server-version }}
140+
server-version: ${{ env.EDGEDB_SERVER_VERSION }}
142141

143142
- uses: pypa/[email protected]
144143
with:
145144
only: ${{ matrix.only }}
146145
env:
147146
CIBW_BUILD_VERBOSITY: 1
148147
CIBW_BEFORE_ALL_LINUX: >
149-
EDGEDB_SERVER_VERSION=${{ matrix.edgedb-server-version }} .github/workflows/install-edgedb.sh
148+
EDGEDB_SERVER_VERSION=${{ env.EDGEDB_SERVER_VERSION }} .github/workflows/install-edgedb.sh
150149
CIBW_TEST_EXTRAS: "test"
151150
CIBW_TEST_COMMAND: >
152151
python {project}/tests/__init__.py

0 commit comments

Comments
 (0)