-
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[build] create a stage release workflow for after the pre-release PR …
…is merged
- Loading branch information
1 parent
6453efd
commit 45db5d2
Showing
2 changed files
with
81 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
name: Release Staging | ||
|
||
on: | ||
pull_request: | ||
types: [closed] | ||
|
||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
jobs: | ||
generate-packages: | ||
if: > | ||
github.event.pull_request.merged == true && | ||
github.repository_owner == 'seleniumhq' && | ||
startsWith(github.event.pull_request.head.ref, 'release-preparation-') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v4 | ||
- name: Extract version from branch name | ||
id: extract_version | ||
run: | | ||
BRANCH_NAME="${{ github.event.pull_request.head.ref }}" | ||
VERSION="${BASH_REMATCH[1]}" | ||
echo "VERSION=$VERSION" >> $GITHUB_ENV | ||
- name: Setup Java | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: 17 | ||
distribution: 'temurin' | ||
- name: Stage Java packages | ||
run: ./go java:package['--config=release'] | ||
- name: Stage .NET packages | ||
run: ./go dotnet:package['--config=release'] | ||
- name: Build Ruby | ||
run: ./go rb:build['--config=release'] | ||
- name: Build Python | ||
run: ./go py:build['--config=release'] | ||
- name: Build Node | ||
run: ./go node:build['--config=release'] | ||
- name: "Upload releases" | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: release-assets | ||
path: build/dist/ | ||
retention-days: 6 | ||
- name: Prep git | ||
run: | | ||
git config --local user.email "selenium-ci@users.noreply.github.com" | ||
git config --local user.name "Selenium CI Bot" | ||
- name: Update tag | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
git tag selenium-${{ env.VERSION }} | ||
git push selenium-${{ env.VERSION }} | ||
- name: "Release" | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
name: Selenium ${{ env.VERSION }} | ||
body: | | ||
### Changelogs | ||
For each component's detailed changelog, please check: | ||
* [Ruby](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES) | ||
* [Python](https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES) | ||
* [JavaScript](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/node/selenium-webdriver/CHANGES.md) | ||
* [Java](https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG) | ||
* [DotNet](https://github.com/SeleniumHQ/selenium/blob/trunk/dotnet/CHANGELOG) | ||
* [IEDriverServer](https://github.com/SeleniumHQ/selenium/blob/trunk/cpp/iedriverserver/CHANGELOG) | ||
tag_name: selenium-${{ env.VERSION }} | ||
draft: true | ||
generate_release_notes: true | ||
prerelease: false | ||
files: | | ||
artifacts/release-assets/selenium-dotent-${{ env.VERSION }}.zip | ||
artifacts/release-assets/selenium-dotent-strongnamed-${{ env.VERSION }}.zip | ||
artifacts/release-assets/selenium-java-${{ env.VERSION }}.zip | ||
artifacts/release-assets/selenium-server-${{ env.VERSION }}.jar | ||
artifacts/release-assets/selenium-server-${{ env.VERSION }}.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters