Skip to content

Commit

Permalink
+ 更新至2.1.5
Browse files Browse the repository at this point in the history
+ fix #73 #74
  • Loading branch information
cnlimiter committed Apr 19, 2023
1 parent 5bf0aaf commit 45d9830
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
39 changes: 39 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Java CI with Gradle

on:
push:
tags:
- '*'

permissions:
contents: read

jobs:
build:

runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
- uses: gradle/gradle-build-action@v2
with:
gradle-version: 7.3
arguments: build
- run: gradle.bat buildNeeded
shell: cmd
- name: Run a cmd script
run: tree /F /A ${{ github.workspace }}
shell: cmd
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
generate_release_notes: true
files: ${{ github.workspace }}\build\libs\Bot-Connect-fabric*.jar
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 45d9830

Please sign in to comment.