0.0.7 #8
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: Java CD | |
on: | |
release: | |
types: [ published ] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '8' | |
- name: Cache local Maven repository | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Build sources | |
id: build | |
run: | | |
mvn versions:set -DnewVersion=${{ github.event.release.tag_name }} | |
mvn package --file pom.xml -s .github/github-settings.xml | |
- name: Clean temporary files after the tests | |
run: rm -rf test-temp/ | |
- name: Create zip archive with the release | |
run: zip release.zip ./* -r | |
- name: Attach zip archive to the release | |
id: upload-source-asset | |
uses: actions/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
with: | |
upload_url: ${{ github.event.release.upload_url }} | |
asset_path: release.zip | |
asset_name: ${{ github.event.repository.name }}-${{ github.event.release.tag_name }}.zip | |
asset_content_type: application/zip |