Skip to content

Commit

Permalink
add ci
Browse files Browse the repository at this point in the history
  • Loading branch information
rkm committed Nov 30, 2023
1 parent 52d9221 commit 044e4dd
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: 2
updates:
- package-ecosystem: "maven"
directory: "/"
schedule:
interval: "weekly"
reviewers:
- SMI/reviewers
30 changes: 30 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: main

on:
push:
branches: "*"
tags: "*"
pull_request:
schedule:
- cron: "0 6 * * *"
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: set-up JDK
uses: actions/setup-java@v2
with:
java-version: "8"
distribution: "temurin"
cache: maven
- name: package
run: mvn -B -ntp package
- name: "upload jar"
uses: actions/upload-artifact@v3
with:
name: "${{ github.event.repository.name }}-${{ github.sha }}.zip"
path: target/ctp-anon-cli*.jar
if-no-files-found: error

0 comments on commit 044e4dd

Please sign in to comment.