Skip to content

hotfix/maven_build: Moved sources 6 #39

hotfix/maven_build: Moved sources 6

hotfix/maven_build: Moved sources 6 #39

Workflow file for this run

# 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:
collect-source-code:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Archive Source Code
run: |
git archive --format=zip --output=source-code.zip HEAD
tar -czf source-code.tar.gz source-code.zip
echo current location: $PWD
ls -a
working-directory: ${{ github.workspace }}
- name: Upload sources to artifacts
uses: actions/upload-artifact@v2
with:
name: my-artifacts
path: ${{ github.workspace }}
build-and-release:
runs-on: ubuntu-latest
needs: collect-source-code
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##*/}
working-directory: ${{ github.workspace }}
- name: Clone core
uses: GuillaumeFalourd/[email protected]
with:
owner: 'benchdoos'
repository: 'weblocopenercore'
access-token: ${{ secrets.WEBLOCOPENERCORE }}
branch: ${GITHUB_REF##*/}
- name: Build WeblocOpener core
run: |
cd weblocopenercore
ls -a
mvn -B clean install -P enable-dev-mode,hide-ultimate-mode
- name: Build WeblocOpener
run: mvn -B clean package -P build-setup,build-deb,build-exe --file pom.xml
- name: Download Artifacts with sources
uses: actions/download-artifact@v2
with:
name: my-artifacts
path: ${{ github.workspace }}
- name: Create Draft Release
run: |
echo current location: $PWD
ls -a
RELEASE_NAME=rc-${GITHUB_REF##*/}-build.$BUILD_ID
RELEASE_TAG=${GITHUB_REF##*/}-build.$BUILD_ID
echo Release name: $RELEASE_NAME
gh release create $RELEASE_TAG target/WeblocOpener.deb target/WeblocOpenerSetup.exe source-code.zip source-code.tar.gz --title "Build release: $RELEASE_NAME" --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
dependency-graph:
runs-on: ubuntu-latest
needs: build-and-release
steps:
- uses: actions/checkout@v3
- name: Update dependency graph
uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6