add actions

This commit is contained in:
Minecon724 2024-01-14 15:10:17 +00:00
parent c34d635dd1
commit 3adbae45b7
2 changed files with 25 additions and 1 deletions

25
.github/workflows/build.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: learn-github-actions
run-name: ${{ github.actor }} is learning GitHub Actions
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17 for x64
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
architecture: x64
cache: maven
- name: mvn build package
run: mvn build package
- run: mkdir staging && cp target/*.jar staging
- uses: actions/upload-artifact@v3
with:
name: Package
path: staging

View file

@ -1,6 +1,5 @@
- local maxmind - local maxmind
- account for real sun movement, not just time - account for real sun movement, not just time
- gh actions
- readd metrics - readd metrics
- fix realtime - fix realtime
- cache cleaning - cache cleaning