File tree Expand file tree Collapse file tree 1 file changed +11
-10
lines changed Expand file tree Collapse file tree 1 file changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -64,14 +64,15 @@ jobs:
64
64
}
65
65
$zipName = "CollectionInterface_${{ matrix.build_platform }}.zip"
66
66
$filesToZip = "CollectionInterface.dll", ".\docs\"
67
- Compress-Archive -Path $filesToZip -Destination CollectionInterface.zip
67
+ Compress-Archive -Path $filesToZip -Destination $zipName
68
68
dir
69
- # - name: 🎉 Store ${{ matrix.build_platform }} zipfile as asset
70
- # if: startsWith(github.ref, 'refs/tags/v') && matrix.build_configuration == 'Release'
71
- # uses: svenstaro/upload-release-action@v2
72
- # with:
73
- # repo_token: ${{ secrets.GITHUB_TOKEN }}
74
- # file: ./CollectionInterface.zip
75
- # tag: ${{ github.ref }}
76
- # overwrite: true
77
- # body: ${{ github.event.release.body }}
69
+ - name : 🎉 Store ${{ matrix.build_platform }} zipfile as asset
70
+ if : startsWith(github.ref, 'refs/tags/v') && matrix.build_configuration == 'Release'
71
+ uses : svenstaro/upload-release-action@v2
72
+ with :
73
+ repo_token : ${{ secrets.GITHUB_TOKEN }}
74
+ file : ./CollectionInterface_${{ matrix.build_platform }}.zip
75
+ asset_name : CollectionInterface_${{ matrix.build_platform }}.zip
76
+ tag : ${{ github.ref }}
77
+ overwrite : true
78
+ body : ${{ github.event.release.body }}
You can’t perform that action at this time.
0 commit comments