Skip to content

Commit

Permalink
fix: use env prefix to access variable
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinbarron committed Dec 22, 2022
1 parent 36e5e01 commit 9875540
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ jobs:
with:
dotnet-version: 6.0.x
- name: Publish ${{ matrix.architecture }}
run: dotnet publish ./msgraph-developer-proxy/msgraph-developer-proxy.csproj -c Release -p:PublishSingleFile=true -r ${{ matrix.architecture }} -o ./${{ release }}
- name: Archive Release ${{ release }}
run: dotnet publish ./msgraph-developer-proxy/msgraph-developer-proxy.csproj -c Release -p:PublishSingleFile=true -r ${{ matrix.architecture }} -o ./${{ env.release }}
- name: Archive Release ${{ env.release }}
uses: thedoctor0/zip-release@master
with:
filename: './${{ release }}.zip'
path: './${{ release }}'
filename: './${{ env.release }}.zip'
path: './${{ env.release }}'
- uses: actions/upload-artifact@v3
with:
name: binaries-${{ release }}
path: ./${{ release }}.zip
name: binaries-${{ env.release }}
path: ./${{ env.release }}.zip
create_release:
name: Create Release
needs: [publish_binaries]
Expand Down

0 comments on commit 9875540

Please sign in to comment.