Skip to content

Commit

Permalink
matrix should succeed this time
Browse files Browse the repository at this point in the history
  • Loading branch information
toddtarsi committed Dec 8, 2023
1 parent c8b522f commit 6b6ed24
Showing 1 changed file with 11 additions and 18 deletions.
29 changes: 11 additions & 18 deletions .github/workflows/release-ide.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,26 +53,19 @@ jobs:
working-directory: ./packages/selenium-ide
- name: Check env is there
run: echo "${{ env.SIDE_RELEASE_VERSION }}"
- name: Release latest selenium-ide on github
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest-${{ matrix.platform }}"
prerelease: true
title: "Nightly (Unstable)"
files: packages/selenium-ide/dist/Selenium*
- name: Release selenium-ide on github
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "${{ env.SIDE_RELEASE_VERSION }}-${{ matrix.platform }}"
automatic_release_tag: "${{ env.SIDE_RELEASE_VERSION }}"
prerelease: false
continue-on-error: true
- name: Upload binaries to release for ${{ matrix.platform }}
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: packages/selenium-ide/dist/Selenium*
file_glob: true
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
overwrite: true
tag: "${{ env.SIDE_RELEASE_VERSION }}-${{ matrix.platform }}"
files: packages/selenium-ide/dist/Selenium*
continue-on-error: true

0 comments on commit 6b6ed24

Please sign in to comment.