Skip to content

Commit de52c41

Browse files
committed
github action fix
1 parent c912975 commit de52c41

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build-and-release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,15 @@ jobs:
1818
- name: dotnet publish
1919
run: |
2020
dotnet publish -c Release -o out
21-
zip --junk-paths aci-manage out/*
21+
cd out
22+
zip --junk-paths ../aci-manage *
2223
- name: Create Release
2324
id: create_release
2425
uses: actions/create-release@v1
2526
env:
2627
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2728
with:
28-
tag_name: ${{ github.ref }}
29+
tag_name: master
2930
release_name: Release ${{ github.ref }}
3031
draft: false
3132
prerelease: false

0 commit comments

Comments
 (0)