diff options
author | Tyler Murphy <tylermurphy534@gmail.com> | 2021-12-20 19:26:03 -0500 |
---|---|---|
committer | Tyler Murphy <tylermurphy534@gmail.com> | 2021-12-20 19:26:03 -0500 |
commit | e30bfdddbcfad320eb2d7fdf38826a94b6df26b8 (patch) | |
tree | 9c3fd7f92adcb22b5927fffe273b51bef5fc1531 | |
parent | switch to artifacts (diff) | |
download | kenshinshideandseek-e30bfdddbcfad320eb2d7fdf38826a94b6df26b8.tar.gz kenshinshideandseek-e30bfdddbcfad320eb2d7fdf38826a94b6df26b8.tar.bz2 kenshinshideandseek-e30bfdddbcfad320eb2d7fdf38826a94b6df26b8.zip |
add or to maven package statement
-rw-r--r-- | .github/workflows/beta.yml | 2 | ||||
-rw-r--r-- | .github/workflows/release.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml index a37bf00..f70f479 100644 --- a/.github/workflows/beta.yml +++ b/.github/workflows/beta.yml @@ -19,7 +19,7 @@ jobs: java-version: 1.8 - name: Build with Maven - run: + run: | mvn -B package --file pom.xml mkdir staging && cp target/*.jar staging diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b601a73..4ba6c59 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: java-version: 1.8 - name: Build with Maven - run: + run: | mvn -B package --file pom.xml mkdir staging && cp target/*.jar staging |