Skip to content

Commit

Permalink
ci: add publish
Browse files Browse the repository at this point in the history
  • Loading branch information
SettingDust committed Nov 18, 2024
1 parent db35d74 commit b80827b
Show file tree
Hide file tree
Showing 4 changed files with 127 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: gradle # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: weekly
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
on:
push:
jobs:
build:
name: Dependencies
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
cache: gradle

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
cache-read-only: false

- name: Execute Gradle build
run: ./gradlew build
21 changes: 21 additions & 0 deletions .github/workflows/dependency-submission.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Dependency Submission

on:
push:
branches: [ 'main' ]

permissions:
contents: write

jobs:
dependency-submission:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21

- name: Generate and submit dependency graph
uses: gradle/actions/dependency-submission@v3
70 changes: 70 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
on:
push:
tags: [ '[0-9]+.[0-9]+.[0-9]+' ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
cache: 'gradle'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
cache-read-only: false

- name: Execute Gradle build
run: ./gradlew build

- name: Update CHANGELOG
id: changelog
uses: requarks/changelog-action@v1
with:
token: ${{ github.token }}
tag: ${{ github.ref_name }}

- name: Upload jar
uses: Kir-Antipov/[email protected]
with:
changelog: ${{ steps.changelog.outputs.changes }}
# Only include this section if you wish to publish
# your assets on Modrinth.
modrinth-id: item-converter
modrinth-token: ${{ secrets.MODRINTH_TOKEN }}

# Only include this section if you wish to publish
# your assets on CurseForge.
curseforge-id: 1143473
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }}

files: |
build/libs/!(*-@(fabric|sources|dev)).jar
build/libs/*-@(sources).jar
version: ${{ github.ref_name }}

loaders: |
forge
game-versions: |
1.19.2
game-version-filter: releases

dependencies: |
kotlin-for-forge
java: |
17
- name: Commit CHANGELOG.md
uses: stefanzweifel/git-auto-commit-action@v5
with:
branch: main
commit_message: 'docs: update CHANGELOG.md for ${{ github.ref_name }} [skip ci]'
file_pattern: CHANGELOG.md

0 comments on commit b80827b

Please sign in to comment.