27 lines
664 B
YAML
27 lines
664 B
YAML
name: Gitea Actions Demo
|
|
run-name: ${{ github.actor }} is testing out Gitea Actions
|
|
on: [push]
|
|
jobs:
|
|
Explore-Gitea-Actions:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: echo
|
|
run: cat /etc/hostname
|
|
|
|
- name: Checkout
|
|
uses: https://github.com/actions/checkout@v3
|
|
|
|
- name: Install Java
|
|
uses: https://github.com/actions/setup-java@v3
|
|
with:
|
|
distribution: 'oracle'
|
|
java-version: 17
|
|
|
|
- name: Set up Maven
|
|
uses: https://github.com/stCarolas/setup-maven@v4.5
|
|
|
|
- run: cat ~/.m2/settings.xml
|
|
|
|
- name: Deploy
|
|
run: mvn |