From 2c73aedbdf45737beeb4da8cbb07a2c1dfc56ddf Mon Sep 17 00:00:00 2001 From: Refringe Date: Wed, 6 Mar 2024 16:50:31 -0500 Subject: [PATCH] Update build.yaml to output values to GITHUB_OUTPUT instead of GITEA_OUTPUT --- .gitea/workflows/build.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 0970f20..5abd05a 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -38,7 +38,7 @@ jobs: - name: Output Target Tag if: steps.check.outputs.proceed == 'true' - run: echo "target_tag=${TAG}" >> $GITEA_OUTPUT + run: echo "target_tag=${TAG}" >> $GITHUB_OUTPUT build-server: needs: check-tag-exists @@ -134,7 +134,7 @@ jobs: overwrite: true - name: Output Build Type - run: echo "build_type=${BUILD_TYPE}" >> $GITEA_OUTPUT + run: echo "build_type=${BUILD_TYPE}" >> $GITHUB_OUTPUT build-modules: needs: check-tag-exists @@ -221,7 +221,7 @@ jobs: overwrite: true - name: Output Client Version - run: echo "client_version=${CLIENT_VERSION}" >> $GITEA_OUTPUT + run: echo "client_version=${CLIENT_VERSION}" >> $GITHUB_OUTPUT build-launcher: needs: check-tag-exists