Skip to content

Commit aeba0d1

Browse files
committed
fix environment variables
1 parent 5c2f5f6 commit aeba0d1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
name: 🛠️ Test
15+
name: Test
1616

1717
on:
1818
push:
@@ -52,7 +52,7 @@ jobs:
5252
matrix:
5353
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
5454
affected: ${{fromJson(needs.affected.outputs.python)}}
55-
permissions:
55+
permissions: # needed for google-github-actions/auth
5656
id-token: write
5757
contents: read
5858
defaults:
@@ -66,8 +66,8 @@ jobs:
6666
python-version: ${{matrix.python-version}}
6767
- uses: 'google-github-actions/auth@v2'
6868
with:
69-
project_id: $PROJECT
70-
workload_identity_provider: $WORKLOAD_IDENTITY_PROVIDER
69+
project_id: ${{env.PROJECT}}
70+
workload_identity_provider: ${{env.WORKLOAD_IDENTITY_PROVIDER}}
7171
- run: pip install nox
7272
- run: bun install
7373
- run: bun run tests python${{matrix.python-version}} AFFECTED

0 commit comments

Comments
 (0)