Skip to content

Commit

Permalink
fixes for Release step
Browse files Browse the repository at this point in the history
  • Loading branch information
Maciej Antosiak committed Feb 27, 2024
1 parent 6cac2db commit d7d4619
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,12 +144,13 @@ jobs:
name: DBTestCompareGeneratorWindows${{ env.dBTestCompareGeneratorVersion }}
path: ./DBTestCompareGenerator/bin/${{ env.buildConfiguration }}/net6.0
- shell: powershell
run: compress-archive -path ./DBTestCompareGenerator/bin/${{ env.buildConfiguration }}/net6.0 ./DBTestCompareGenerator/DBTestCompareGeneratorWindows${{ env.dBTestCompareGeneratorVersion }}.zip
run: |
compress-archive -Path ./DBTestCompareGenerator/bin/${{ env.buildConfiguration }}/net6.0 -DestinationPath ./DBTestCompareGenerator/DBTestCompareGeneratorWindows${{ env.dBTestCompareGeneratorVersion }}.zip
- name: Create Release Windows
uses: ncipollo/release-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
artifacts: ../DBTestCompareGenerator/DBTestCompareGeneratorWindows${{ env.dBTestCompareGeneratorVersion }}.zip
artifacts: ./DBTestCompareGenerator/DBTestCompareGeneratorWindows${{ env.dBTestCompareGeneratorVersion }}.zip
tag: DBTestCompareGeneratorWindows_${{ env.dBTestCompareGeneratorVersion }}
name: "DBTestCompareGeneratorWindows Version ${{ env.dBTestCompareGeneratorVersion }}"
skipIfReleaseExists: true
Expand Down

0 comments on commit d7d4619

Please sign in to comment.