From f621a3cba3483fa1d0ac3cadc085599c67e26e1e Mon Sep 17 00:00:00 2001 From: Florian Ostertag Date: Fri, 19 Apr 2024 21:51:51 +0200 Subject: [PATCH] dotnet-desktop.yml aktualisieren --- .github/workflows/dotnet-desktop.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml index f958ba6e6..ac9cd70c0 100644 --- a/.github/workflows/dotnet-desktop.yml +++ b/.github/workflows/dotnet-desktop.yml @@ -6,7 +6,7 @@ on: url-win-x64: value: ${{ jobs.build.outputs.test}} url-win-x86: - value: ${{ env.bar }} + value: ${{ jobs.build.outputs.x86}} jobs: build: @@ -20,6 +20,10 @@ jobs: env: Solution_Name: Vocaluxe.sln # Replace with your solution name, i.e. MyWpfApp.sln. + outputs: + x86: ${{ steps.create-output.outputs.x86 }} + test: ${{ steps.create-output-test.outputs.bar }} + steps: - name: Checkout uses: actions/checkout@v4 @@ -64,8 +68,4 @@ jobs: - name: Create output test id: create-output-test - run: echo "bar=foo" >> $ENV:GITHUB_OUTPUT - - outputs: - x86: ${{ steps.create-output.outputs.x86 }} - test: ${{ steps.create-output.outputs.bar }} \ No newline at end of file + run: echo "bar=foo" >> $ENV:GITHUB_OUTPUT \ No newline at end of file