Skip to content

Commit

Permalink
Merge pull request #10 from uku3lig/dev/1.0
Browse files Browse the repository at this point in the history
1.0 rewrite
  • Loading branch information
uku3lig authored Sep 21, 2023
2 parents 850c7d8 + c26b501 commit 2a2ec85
Show file tree
Hide file tree
Showing 63 changed files with 3,277 additions and 994 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@ name: codeql analysis

on:
push:
branches:
- '*'
tags-ignore:
- '*'

jobs:
analyze:
Expand All @@ -28,6 +24,16 @@ jobs:
distribution: temurin
- name: Checkout sources
uses: actions/checkout@v3
- name: Cache/Uncache
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/loom-cache
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
Expand Down
21 changes: 15 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@ name: build (jdk 17)

on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:

jobs:
build:
Expand All @@ -19,11 +14,25 @@ jobs:
distribution: temurin
- name: Checkout sources
uses: actions/checkout@v3
- name: Cache/Uncache
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/loom-cache
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Build
run: ./gradlew build --stacktrace --warning-mode fail
- name: Upload build artifacts
continue-on-error: true
uses: actions/upload-artifact@v3
with:
name: Artifacts
path: build/libs/
path: build/libs/
- name: Publish to the snapshots maven repo
run: ./gradlew publishAllPublicationsToUkuSnapshotsRepository
env:
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
24 changes: 0 additions & 24 deletions .github/workflows/publish.yml

This file was deleted.

Loading

0 comments on commit 2a2ec85

Please sign in to comment.