Skip to content

Commit 86ff35a

Browse files
authored
Merge pull request #102 from WeihanLi/dev
0.12.0 update build
2 parents 09033bb + 8bf6bce commit 86ff35a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.azure/pipelines/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ steps:
5151
displayName: 'dotnet-exec'
5252

5353
- script: |
54-
dotnet-exec ./build/build-version-image.cs
54+
dotnet-exec ./build/build-version-image.cs < /dev/null
5555
displayName: 'Push versioned image'
5656
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/main'))
5757

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ jobs:
6262
- name: Download artifacts
6363
uses: actions/download-artifact@v4
6464
with:
65-
path: artifacts
65+
path: dist
6666
- name: Create Github Release
6767
shell: pwsh
6868
env:
6969
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7070
run: |
71-
./build.ps1 --stable=true
72-
gh release create ${{ env.ReleaseVersion }} --generate-notes ./artifacts/*
71+
ls ./dist
72+
gh release create ${{ env.ReleaseVersion }} --generate-notes ./dist/*

0 commit comments

Comments
 (0)