diff --git a/.github/workflows/build-docker.yml b/.github/workflows/build-docker.yml deleted file mode 100644 index e350b90..0000000 --- a/.github/workflows/build-docker.yml +++ /dev/null @@ -1,18 +0,0 @@ -# name: Build & Push Docker Image to container image registry - -# on: -# release: -# types: [created] -# push: -# branches: -# - main -# pull_request: -# branches: -# - main -# paths: -# - "Dockerfile" - -# jobs: -# docker: -# uses: clytage/workflows/.github/workflows/docker-build.yml@main -# secrets: inherit diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..2cc83a3 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,21 @@ +name: Build +on: + push: + branches: + - main + pull_request: + branches: + - "**" + +jobs: + package: + name: Maven Package + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-java@v3 + with: + distribution: 'oracle' + java-version: '17' + - name: Build with Maven + run: mvn package --file pom.xml \ No newline at end of file diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index eea53f4..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,14 +0,0 @@ -name: Lint code and compile setup script - -on: - push: - branches: - - main - pull_request: - branches: - - "**" - -jobs: - test: - uses: clytage/workflows/.github/workflows/pnpm-lint-and-test.yml@main - secrets: inherit diff --git a/pom.xml b/pom.xml index 2a447ba..49d9b90 100644 --- a/pom.xml +++ b/pom.xml @@ -49,7 +49,7 @@ org.xerial sqlite-jdbc - 3.42.0.0 + 3.43.0.0 me.minebuilders