Skip to content

Commit c8b522f

Browse files
committed
overwrite files and split release buckets by os
1 parent 9eef390 commit c8b522f

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/release-ide.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
uses: "marvinpinto/action-automatic-releases@latest"
5858
with:
5959
repo_token: "${{ secrets.GITHUB_TOKEN }}"
60-
automatic_release_tag: "${{ env.SIDE_RELEASE_VERSION }}"
60+
automatic_release_tag: "${{ env.SIDE_RELEASE_VERSION }}-${{ matrix.platform }}"
6161
prerelease: false
6262
continue-on-error: true
6363
- name: Upload binaries to release for ${{ matrix.platform }}
@@ -66,11 +66,13 @@ jobs:
6666
repo_token: ${{ secrets.GITHUB_TOKEN }}
6767
file: packages/selenium-ide/dist/Selenium*
6868
file_glob: true
69-
tag: ${{ github.ref }}
69+
overwrite: true
70+
tag: "${{ env.SIDE_RELEASE_VERSION }}-${{ matrix.platform }}"
7071
- name: Upload binaries to release
7172
uses: svenstaro/upload-release-action@v2
7273
with:
7374
repo_token: ${{ secrets.GITHUB_TOKEN }}
7475
file: packages/selenium-ide/dist/Selenium*
7576
file_glob: true
76-
tag: ${{ github.ref }}
77+
overwrite: true
78+
tag: "${{ env.SIDE_RELEASE_VERSION }}-${{ matrix.platform }}"

0 commit comments

Comments
 (0)