hotfix/maven_build: Fix release name #25
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
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven | |
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
name: Java CI with Maven | |
on: | |
push: | |
branches: [ "master", "v2.0.0" ] | |
pull_request: | |
branches: [ "master", "v2.0.0" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: maven | |
- name: Set Unique Build ID | |
id: unique_id | |
run: echo "BUILD_ID=$GITHUB_RUN_ID" >> $GITHUB_ENV | |
- name: Branch name | |
run: echo running on branch ${GITHUB_REF##*/} | |
- name: Create and display release name | |
run: | | |
RELEASE_NAME=rc-${GITHUB_REF##*/}-$BUILD_ID | |
echo "The unique build ID is $RELEASE_NAME" | |
- name: Create Release Tag | |
id: create_release_tag | |
run: | | |
release_tag=$RELEASE_NAME | |
echo release tag: $release_tag | |
echo "RELEASE_TAG=$release_tag" >> $GITHUB_ENV | |
- name: Clone core | |
uses: GuillaumeFalourd/clone-github-repo-action@v2.2 | |
with: | |
owner: 'benchdoos' | |
repository: 'weblocopenercore' | |
access-token: ${{ secrets.WEBLOCOPENERCORE }} | |
branch: ${GITHUB_REF##*/} | |
- name: Build core | |
run: | | |
cd weblocopenercore | |
ls -a | |
mvn -B clean install -P enable-dev-mode,hide-ultimate-mode | |
- name: Build with Maven | |
run: mvn -B clean package -P build-setup,build-deb,build-exe --file pom.xml | |
- name: Create Draft Release | |
run: | | |
gh release create $RELEASE_TAG target/WeblocOpener.deb target/WeblocOpenerSetup.exe --title "Build release: $RELEASE_TAG" --notes "Build: $RELEASE_TAG" --draft | |
env: | |
GITHUB_TOKEN: ${{ secrets.WEBLOCOPENER_RELEASES }} | |
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive | |
- name: Update dependency graph | |
uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6 |