build: modify release workflow to not upgrade the versions anymore, t… #54
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
# Workflow that creates artifacts of the latest dev versions. | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Java CI | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Cache Maven packages | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-m2-${{ hashFiles('.github/workflows/**/*.*', '**/pom.xml', '**/META-INF/MANIFEST.MF', 'build/de.cau.cs.kieler.spviz.targetplatform/de.cau.cs.kieler.spviz.targetplatform.target') }} | |
- name: Build with Maven | |
run: mvn --batch-mode --update-snapshots -f build/pom.xml verify | |
- name: Archive P2 Repository | |
uses: actions/upload-artifact@v4 | |
with: | |
name: SPViz P2 Repository | |
path: build/de.cau.cs.kieler.spviz.repository/target/repository/**/* | |
retention-days: 14 | |
if-no-files-found: error | |
- name: Archive CLI | |
uses: actions/upload-artifact@v4 | |
with: | |
name: SPViz CLI | |
path: cli/de.cau.cs.kieler.spviz.cli/target/spviz-cli.jar | |
retention-days: 14 | |
if-no-files-found: error |