-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5ccc5b5
commit b45be7d
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,17 +71,17 @@ jobs: | |
uses: vimtor/[email protected] | ||
with: | ||
files: src/${{ env.TargetApplicationDirectory }}/bin/${{ matrix.targetplatform }}/${{ matrix.configuration }}/net6.0-windows/ | ||
dest: src/${{ env.InstallerApplicationDirectory }}/bin/${{ matrix.targetplatform }}/${{ matrix.configuration }}/net6.0-windows/${{ env.ZipPrefix-${{github.ref_name}} }}.zip | ||
dest: src/${{ env.InstallerApplicationDirectory }}/bin/${{ matrix.targetplatform }}/${{ matrix.configuration }}/net6.0-windows/${{ env.ZipPrefix }}-${{ github.ref_name }}.zip | ||
|
||
- name: Pack release with installer | ||
uses: vimtor/[email protected] | ||
with: | ||
files: src/${{ env.InstallerApplicationDirectory }}/bin/${{ matrix.targetplatform }}/${{ matrix.configuration }}/net6.0-windows/ | ||
dest: src/${{ env.InstallerApplicationDirectory }}/bin/${{ matrix.targetplatform }}/${{ matrix.configuration }}/net6.0-windows/${{ env.ZipInstaller-${{github.ref_name}} }}.zip | ||
dest: src/${{ env.InstallerApplicationDirectory }}/bin/${{ matrix.targetplatform }}/${{ matrix.configuration }}/net6.0-windows/${{ env.ZipInstaller }}-${{ github.ref_name }}.zip | ||
|
||
# Upload artifacts: https://github.com/marketplace/actions/upload-a-build-artifact | ||
- name: Upload build artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: ${{ env.ArtifactName }} | ||
path: src/${{ env.InstallerApplicationDirectory }}/bin/${{ matrix.targetplatform }}/${{ matrix.configuration }}/net6.0-windows/${{ env.ZipInstaller-${{github.ref_name}} }}.zip | ||
path: src/${{ env.InstallerApplicationDirectory }}/bin/${{ matrix.targetplatform }}/${{ matrix.configuration }}/net6.0-windows/${{ env.ZipInstaller }}-${{ github.ref_name }}.zip |