From 4d7d336b5aa19852383cfd20fda93a6f55fc44cd Mon Sep 17 00:00:00 2001 From: Diego Molina Date: Wed, 18 Sep 2024 15:00:06 +0200 Subject: [PATCH] [ci] Setup curl for Ubuntu on the stage release workflow --- .github/workflows/stage-release.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/stage-release.yml b/.github/workflows/stage-release.yml index 6d15a040cfdc0..d86adc5504d24 100644 --- a/.github/workflows/stage-release.yml +++ b/.github/workflows/stage-release.yml @@ -2,7 +2,7 @@ name: Release Staging on: pull_request: - types: [closed] + types: [ closed ] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -42,6 +42,8 @@ jobs: with: java-version: 17 distribution: 'temurin' + - name: Setup curl for Ubuntu + run: sudo apt-get update && sudo apt-get install -y libcurl4-openssl-dev - name: Build and Stage Packages run: ./go all:package[--config=release] - name: Generate Draft Release @@ -49,9 +51,9 @@ jobs: with: name: Selenium ${{ env.VERSION }} body: | - ## Detailed Changelogs by Component - **[Java](https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG)**     |     **[Python](https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES)**     |     **[DotNet](https://github.com/SeleniumHQ/selenium/blob/trunk/dotnet/CHANGELOG)**     |     **[Ruby](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES)**     |     **[JavaScript](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/node/selenium-webdriver/CHANGES.md)**     |     **[IEDriver](https://github.com/SeleniumHQ/selenium/blob/trunk/cpp/iedriverserver/CHANGELOG)** -
+ ## Detailed Changelogs by Component + **[Java](https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG)**     |     **[Python](https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES)**     |     **[DotNet](https://github.com/SeleniumHQ/selenium/blob/trunk/dotnet/CHANGELOG)**     |     **[Ruby](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES)**     |     **[JavaScript](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/node/selenium-webdriver/CHANGES.md)**     |     **[IEDriver](https://github.com/SeleniumHQ/selenium/blob/trunk/cpp/iedriverserver/CHANGELOG)** +
tag_name: selenium-${{ env.VERSION }} draft: true generate_release_notes: true