Skip to content

Commit

Permalink
Merge pull request #2 from GiganticMinecraft/add-ci
Browse files Browse the repository at this point in the history
ci: Add CI and CD
  • Loading branch information
m1sk9 authored Jan 26, 2025
2 parents b0c43e6 + 46d0713 commit e90faae
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci-and-cd.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI and CD
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
name: CI
uses: Lucky3028/shared-workflows/.github/workflows/kotlin-ci.yaml@main
with:
jdk-version: 17
gradle-jvm-version: 17
cd:
name: CD
uses: Lucky3028/shared-workflows/.github/workflows/kotlin-cd.yaml@main
if: github.ref == 'refs/heads/main'
needs:
- ci

0 comments on commit e90faae

Please sign in to comment.