@@ -54,37 +54,18 @@ jobs:
54
54
run : sudo apt-get update && sudo apt-get install -y libcurl4-openssl-dev
55
55
- name : Build and Stage Packages
56
56
run : ./go all:package[--config=release]
57
- # - name: Update Nightly Tag to Remove pre-release
58
- # run: |
59
- # git fetch --tags
60
- # git tag -d nightly || echo "Nightly tag not found"
61
- # git tag nightly
62
- # git push origin refs/tags/nightly --force
63
57
- name : Generate Draft Release
64
58
uses : ncipollo/release-action@v1
65
59
with :
66
60
artifacts : " build/dist/*.*"
67
61
bodyFile : " scripts/github-actions/release_header.md"
68
62
draft : true
69
63
generateReleaseNotes : true
70
- name : Selenium ${{ env.VERSION }}
64
+ name : " Selenium ${{ env.VERSION }}"
71
65
prerelease : false
72
66
skipIfReleaseExists : true
73
- tag : selenium-${{ env.VERSION }}
74
- commit : trunk
75
- # - name: Generate Draft Release
76
- # uses: softprops/action-gh-release@v2
77
- # with:
78
- # name: Selenium ${{ env.VERSION }}
79
- # body: |
80
- # ## Detailed Changelogs by Component
81
- # <img src="https://www.selenium.dev/images/programming/java.svg" width="20" height="20"> **[Java](https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG)** | <img src="https://www.selenium.dev/images/programming/python.svg" width="20" height="20"> **[Python](https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES)** | <img src="https://www.selenium.dev/images/programming/csharp.svg" width="20" height="20"> **[DotNet](https://github.com/SeleniumHQ/selenium/blob/trunk/dotnet/CHANGELOG)** | <img src="https://www.selenium.dev/images/programming/ruby.svg" width="20" height="20"> **[Ruby](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES)** | <img src="https://www.selenium.dev/images/programming/javascript.svg" width="20" height="20"> **[JavaScript](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/node/selenium-webdriver/CHANGES.md)** | <img src="https://www.selenium.dev/images/browsers/internet-explorer.svg" width="20" height="20"> **[IEDriver](https://github.com/SeleniumHQ/selenium/blob/trunk/cpp/iedriverserver/CHANGELOG)**
82
- # <br>
83
- # tag_name: selenium-${{ env.VERSION }}
84
- # draft: true
85
- # generate_release_notes: true
86
- # prerelease: false
87
- # files: build/dist/*.*
67
+ tag : " selenium-${{ env.VERSION }}"
68
+ commit : " ${{ github.sha }}"
88
69
89
70
update-documentation :
90
71
needs : github-release
0 commit comments