File tree Expand file tree Collapse file tree 3 files changed +35
-10
lines changed
Expand file tree Collapse file tree 3 files changed +35
-10
lines changed Original file line number Diff line number Diff line change 1+ name : Upload Release Asset
2+
3+ on :
4+ workflow_dispatch :
5+ inputs :
6+ version :
7+ description : ' Release version'
8+ required : true
9+ upload_url :
10+ description : ' Upload URL'
11+ required : true
12+
13+ jobs :
14+ build :
15+ runs-on : ubuntu-latest
16+ steps :
17+ - uses : actions/checkout@v2
18+ - name : Set up JDK 11
19+ uses : actions/setup-java@v1
20+ with :
21+ java-version : 11
22+ - name : Build with Maven
23+ run : mvn -B clean package --file pom.xml
24+
25+ - name : Upload Release Asset
26+ uses : actions/upload-release-asset@v1
27+ env :
28+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
29+ with :
30+ upload_url : ${{ github.event.inputs.upload_url }}
31+ asset_path : ./target/virtual-schema-common-java-${{ github.event.inputs.version }}.jar
32+ asset_name : virtual-schema-common-java-${{ github.event.inputs.version }}.jar
33+ asset_content_type : application/java-archive
Original file line number Diff line number Diff line change 11language : java
22
3- # Setting sudo to false will cause Travis to use Containers.
4- # To use Docker's privileged mode, we need to enable sudo.
5- sudo : required
6-
7- # services:
8- # - docker
9-
103jdk :
114 - openjdk11
125
169 token :
1710 secure : " Tzw0mn8q0kVwC2x8LJfYCFCn/Zxxp468tbwtoh1xD/KTpGSPhqg8HmfWGKr9r6nRmoghhOVAJufNRWa2ZBOAGQ53TRd44Zub/REyB9GL/8ccG4UiYB3TVAyipQboIfw2dY51oi7s1YMKpgJeraYk56Hd/fF2oMaEDDgtl48Q5yU5FWwYttNQltnl5R1Bwg3wuyghNg+RxcGIW22OQPbvDLeyDHz0UFbqDV8g0bOUqsaTEzHhzBMLz1g1hq5OvWdbwqV3chyHft6Hp5PwIG64dpdhxEhcELcVJyHKe31vaSLOcO8NvSbcJ7By4gtanD4Y3aelxocY7yJEUxtunde9fHUIOi5xcECWpF0Faf6mC17OEuukbE86ryC6tKdPxQkC55zt1troXlQdNqr6l/Ae8PN9sU10Hra28137jXdMX94So63ZFU1ks2SzcjFfdBAHKqE1i7amlE37pRhJp15sm5OVxPJ+3jn8zwYwewq4Zl+KzPUqqqKeCAH/1nAHr9nAN/iJyvz39kilcHjrSi6nCm9UcKh5u0EHFVbfMXHutrtN+vG4F7JICDzvfw1NMiFrNLXwqPESVH4KN8n7CsXevzqpkkzoOBCkYAk1Ww+lGrpZKq2icTgQRaez4SliwZhrcyJjaUghfVKrJZUBS7sLnzY26iuHyD/QCF2kHvMqAzY="
1811
19- before_script : ./tools/version.sh verify
20-
2112script :
22- - mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent install sonar:sonar
13+ - mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent install sonar:sonar
Original file line number Diff line number Diff line change 33## Features / Enhancements
44
55* #126 : Added capabilities for new scalar functions HASHTYPE_ * .
6+ * #144 : Updated .travis.yml, added upload_release_assets.yml for Release Robot.
67
78## Dependency updates
89
You can’t perform that action at this time.
0 commit comments