Skip to content
This repository has been archived by the owner on Jun 22, 2024. It is now read-only.

Commit

Permalink
add actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Minecon724 committed Jan 14, 2024
1 parent c34d635 commit 3adbae4
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -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
1 change: 0 additions & 1 deletion TODO.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
- local maxmind
- account for real sun movement, not just time
- gh actions
- readd metrics
- fix realtime
- cache cleaning
Expand Down

0 comments on commit 3adbae4

Please sign in to comment.