Alex Prudencio
9c4a7fc45c
All checks were successful
Builder / Build-Project (push) Successful in 2m4s
17 lines
552 B
YAML
17 lines
552 B
YAML
name: Builder
|
|
run-name: ${{ gitea.actor }} building
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
Build-Project:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- run: echo "The job was automatically triggered by a ${{ gitea.event_name }} event on branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
|
- name: Build package
|
|
run: |
|
|
git clone https://git.primefactorsolutions.com/PFS/pfs-intra.git && cd pfs-intra && ./mvnw clean package -Pproduction
|
|
- run: echo "This job's status is ${{ job.status }}."
|