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

21 lines
564 B
YAML
Raw Normal View History

2024-09-20 02:28:57 +00:00
name: Builder
run-name: ${{ gitea.actor }} building
on:
push:
branches:
- main
jobs:
2024-09-24 00:05:12 +00:00
Build-Project:
2024-09-23 23:52:20 +00:00
runs-on: ubuntu-22.04
2024-09-20 02:28:57 +00:00
steps:
2024-09-24 00:05:12 +00:00
- run: echo "The job was automatically triggered by a ${{ gitea.event_name }} event on branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
2024-09-24 00:13:26 +00:00
- name: checkout main
uses: actions/checkout@v4
with:
ref: main
2024-09-24 00:05:12 +00:00
- name: Build package
2024-09-20 02:28:57 +00:00
run: |
2024-09-24 00:05:12 +00:00
./mvnw clean package -Pproduction
2024-09-20 02:28:57 +00:00
- run: echo "This job's status is ${{ job.status }}."