Update .gitea/workflows/build.yml
Some checks failed
msbuild / build (push) Failing after 0s

This commit is contained in:
Greg Gauthier 2024-07-23 10:20:33 +00:00
parent 8259d2ece4
commit 97651c45cd

View File

@ -9,6 +9,8 @@ jobs:
build: build:
runs-on: ubuntu-gitea runs-on: ubuntu-gitea
steps: steps:
- uses: actions/checkout@v4
- name: Prep for local builds - name: Prep for local builds
run: echo "${LOCIP} gitea.comnenos" >> /etc/hosts run: echo "${LOCIP} gitea.comnenos" >> /etc/hosts
@ -18,12 +20,11 @@ jobs:
apt install -y maven apt install -y maven
- name: Setup Java - name: Setup Java
- uses: actions/checkout@v4
- uses: actions/setup-java@v4 - uses: actions/setup-java@v4
with: with:
distribution: 'adopt' # See 'Supported distributions' for available options distribution: 'adopt' # See 'Supported distributions' for available options
java-version: '17' java-version: '17'
- run: | run: |
java -version java -version
mvn -B verify --file pom.xml mvn -B verify --file pom.xml