Skip to content

Commit 6b6ed24

Browse files
committed
matrix should succeed this time
1 parent c8b522f commit 6b6ed24

File tree

1 file changed

+11
-18
lines changed

1 file changed

+11
-18
lines changed

.github/workflows/release-ide.yml

Lines changed: 11 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -53,26 +53,19 @@ jobs:
5353
working-directory: ./packages/selenium-ide
5454
- name: Check env is there
5555
run: echo "${{ env.SIDE_RELEASE_VERSION }}"
56+
- name: Release latest selenium-ide on github
57+
uses: "marvinpinto/action-automatic-releases@latest"
58+
with:
59+
repo_token: "${{ secrets.GITHUB_TOKEN }}"
60+
automatic_release_tag: "latest-${{ matrix.platform }}"
61+
prerelease: true
62+
title: "Nightly (Unstable)"
63+
files: packages/selenium-ide/dist/Selenium*
5664
- name: Release selenium-ide on github
5765
uses: "marvinpinto/action-automatic-releases@latest"
5866
with:
5967
repo_token: "${{ secrets.GITHUB_TOKEN }}"
60-
automatic_release_tag: "${{ env.SIDE_RELEASE_VERSION }}-${{ matrix.platform }}"
68+
automatic_release_tag: "${{ env.SIDE_RELEASE_VERSION }}"
6169
prerelease: false
62-
continue-on-error: true
63-
- name: Upload binaries to release for ${{ matrix.platform }}
64-
uses: svenstaro/upload-release-action@v2
65-
with:
66-
repo_token: ${{ secrets.GITHUB_TOKEN }}
67-
file: packages/selenium-ide/dist/Selenium*
68-
file_glob: true
69-
overwrite: true
70-
tag: "${{ env.SIDE_RELEASE_VERSION }}-${{ matrix.platform }}"
71-
- name: Upload binaries to release
72-
uses: svenstaro/upload-release-action@v2
73-
with:
74-
repo_token: ${{ secrets.GITHUB_TOKEN }}
75-
file: packages/selenium-ide/dist/Selenium*
76-
file_glob: true
77-
overwrite: true
78-
tag: "${{ env.SIDE_RELEASE_VERSION }}-${{ matrix.platform }}"
70+
files: packages/selenium-ide/dist/Selenium*
71+
continue-on-error: true

0 commit comments

Comments
 (0)