Skip to content

Commit

Permalink
dotnet-desktop.yml aktualisieren
Browse files Browse the repository at this point in the history
  • Loading branch information
flokuep authored Apr 19, 2024
1 parent 40dc54f commit f621a3c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/dotnet-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down Expand Up @@ -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 }}
run: echo "bar=foo" >> $ENV:GITHUB_OUTPUT

0 comments on commit f621a3c

Please sign in to comment.