pfs-intra/.gitea/workflows/build-pr.yaml

15 lines
644 B
YAML
Raw Normal View History

2024-09-25 02:00:06 +00:00
name: PR Builder
run-name: ${{ gitea.actor }} building PR
on: [pull_request]
jobs:
Build-PR:
runs-on: ubuntu-22.04
steps:
2024-09-25 02:11:30 +00:00
- run: echo "The job was automatically triggered by a ${{ gitea.event_name }} event on branch ${{ gitea.head_ref }} and ref is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
2024-09-25 02:00:06 +00:00
- name: Build PR
if: gitea.base_ref == 'main'
run: |
2024-09-27 02:08:02 +00:00
git clone --single-branch --branch "${{ gitea.head_ref }}" https://git.primefactorsolutions.com/PFS/pfs-intra.git && cd pfs-intra && ./mvnw clean package -Pproduction
2024-09-25 02:00:06 +00:00
- run: echo "This job's status is ${{ job.status }}."