Skip to content

Commit

Permalink
Fixed id duplication
Browse files Browse the repository at this point in the history
  • Loading branch information
EX3exp committed Oct 6, 2024
1 parent 8ebbbd4 commit 1b64648
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 74 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:

- name: Create GitHub release for main branch
if: github.ref == 'refs/heads/main'
id: create_release
id: create_release_beta
uses: softprops/action-gh-release@v1
with:
tag_name: build/${{ env.VERSION }}
Expand All @@ -88,7 +88,7 @@ jobs:

- name: Create GitHub release for stable branch
if: github.ref == 'refs/heads/stable'
id: create_release
id: create_release_stable
uses: softprops/action-gh-release@v1
with:
tag_name: build/${{ env.VERSION }}
Expand All @@ -102,7 +102,7 @@ jobs:
- name: Upload Release Assets
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
upload_url: ${{ steps.create_release_beta.outputs.upload_url || steps.create_release_stable.outputs.upload_url }}
asset_path: |
Mirivoice.Desktop/bin/win-x86/MiriVoice-win-x86.zip
Mirivoice.Desktop/bin/win-x64/MiriVoice-win-x64.zip
Expand Down
71 changes: 0 additions & 71 deletions appveyor.yml

This file was deleted.

0 comments on commit 1b64648

Please sign in to comment.