Github action dependency for uploading the artifact #19
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 | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: main | |
on: | |
push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v3 | |
env: | |
cache-name: m2 | |
with: | |
path: ~/.m2/repository | |
key: ${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ env.cache-name }}- | |
- name: setup java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: "17" | |
distribution: "temurin" | |
- name: Build all modules with Maven | |
run: | | |
export PLUNGER_HOME="$(pwd)/dist" | |
mkdir "${PLUNGER_HOME}" | |
./plunger-support/install.sh | |
release: | |
needs: build | |
runs-on: ubuntu-latest | |
if: startsWith(github.ref, 'refs/tags/v') | |
steps: | |
- name: Collect release artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: dist | |
path: dist |