1.8.3 #176
Workflow file for this run
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
name: Publish | |
on: | |
push: | |
release: | |
types: [ published ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
MAVEN_USERNAME: ${{ vars.MAVEN_USERNAME }} | |
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: zulu | |
java-version: 17 | |
cache: gradle | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Build and Publish | |
run: ./gradlew build publish --no-daemon -PMAVEN_USERNAME=$MAVEN_USERNAME -PMAVEN_PASSWORD=$MAVEN_PASSWORD | |
- name: Upload common Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: youtube-common.jar | |
path: common/build/libs/youtube-common-*.jar | |
- name: Upload lldevs Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: youtube-v2.jar | |
path: v2/build/libs/youtube-v2-*.jar | |
- name: Upload plugin Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: youtube-plugin.jar | |
path: plugin/build/libs/youtube-plugin-*.jar | |
release: | |
needs: build | |
runs-on: ubuntu-latest | |
if: github.event_name == 'release' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Download youtube-common Artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: youtube-common.jar | |
- name: Download youtube-v2 Artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: youtube-v2.jar | |
- name: Download youtube-plugin Artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: youtube-plugin.jar | |
- name: Upload Artifacts to GitHub Release | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: '*.jar' | |
allowUpdates: true | |
omitBodyDuringUpdate: true | |
omitDraftDuringUpdate: true | |
omitNameDuringUpdate: true | |
omitPrereleaseDuringUpdate: true |