Skip to content

Instantly share code, notes, and snippets.

@initcron
Created May 20, 2025 06:29
Show Gist options
  • Save initcron/dd7b45d6cf1fd29d381b3504c6e37610 to your computer and use it in GitHub Desktop.
Save initcron/dd7b45d6cf1fd29d381b3504c6e37610 to your computer and use it in GitHub Desktop.
package:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: 'maven'
- name: Package app
run: mvn package -DskipTests
- name: Archive JAR
uses: actions/upload-artifact@v4
with:
name: sysfoo-artifact
path: target/*.jar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment