Skip to content

Commit

Permalink
overwrite files and split release buckets by os
Browse files Browse the repository at this point in the history
  • Loading branch information
toddtarsi committed Dec 8, 2023
1 parent 9eef390 commit c8b522f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/release-ide.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "${{ env.SIDE_RELEASE_VERSION }}"
automatic_release_tag: "${{ env.SIDE_RELEASE_VERSION }}-${{ matrix.platform }}"
prerelease: false
continue-on-error: true
- name: Upload binaries to release for ${{ matrix.platform }}
Expand All @@ -66,11 +66,13 @@ jobs:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: packages/selenium-ide/dist/Selenium*
file_glob: true
tag: ${{ github.ref }}
overwrite: true
tag: "${{ env.SIDE_RELEASE_VERSION }}-${{ matrix.platform }}"
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: packages/selenium-ide/dist/Selenium*
file_glob: true
tag: ${{ github.ref }}
overwrite: true
tag: "${{ env.SIDE_RELEASE_VERSION }}-${{ matrix.platform }}"

0 comments on commit c8b522f

Please sign in to comment.