Skip to content

Commit

Permalink
CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
TheoBong committed Aug 10, 2024
1 parent 5c58d0c commit 3ed5c7d
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 61 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build

on: [ push,pull_request ]

jobs:
build:

runs-on: ubuntu-latest
permissions:
contents: read
packages: write

steps:
- uses: actions/checkout@v3

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'

- name: Build with Maven
run: mvn -B package --file pom.xml

- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: lightning-build
path: lightning/build/libs
34 changes: 0 additions & 34 deletions .github/workflows/maven-publish.yml

This file was deleted.

30 changes: 3 additions & 27 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3ed5c7d

Please sign in to comment.