From 3c6eb6b281edd27c41dad5214a32829ceabe1a65 Mon Sep 17 00:00:00 2001 From: Andrew Yuan Date: Thu, 29 Aug 2024 14:09:40 -0700 Subject: [PATCH] silly, missed .outputs --- .github/workflows/ci.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d7aa39a1..971c2df1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -36,11 +36,11 @@ jobs: os: [ubuntu-latest] # windows-latest - like 8x slower. Excluded for now since we're just building. runs-on: ${{ matrix.os }} outputs: - go_latest: ${{ steps.latest_version.go_latest }} - typescript_latest: ${{ steps.latest_version.typescript_latest }} - java_latest: ${{ steps.latest_version.java_latest }} - python_latest: ${{ steps.latest_version.python_latest }} - csharp_latest: ${{ steps.latest_version.csharp_latest }} + go_latest: ${{ steps.latest_version.outputs.go_latest }} + typescript_latest: ${{ steps.latest_version.outputs.typescript_latest }} + java_latest: ${{ steps.latest_version.outputs.java_latest }} + python_latest: ${{ steps.latest_version.outputs.python_latest }} + csharp_latest: ${{ steps.latest_version.outputs.csharp_latest }} steps: - name: Print build information run: 'echo head_ref: "$GITHUB_HEAD_REF", ref: "$GITHUB_REF", os: ${{ matrix.os }}'