Skip to content
This repository has been archived by the owner on Mar 4, 2023. It is now read-only.

Commit

Permalink
Add github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
RappyTV committed Aug 12, 2022
1 parent 3cb118e commit a7d94a8
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
29 changes: 29 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
- name: Upload jar
uses: actions/upload-artifact@v1
with:
name: Artifacts
path: build/libs/
2 changes: 1 addition & 1 deletion src/main/resources/addon.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"mainClass": "com.rappytv.anticlearchat.AntiChatClearAddon",
"description": "This addon ensures that when the chat is cleared you still see all messages!",
"version": 1,
"author": "RappyTV#6969 (Cr: EinsLucaaa)",
"author": "RappyTV#6969 [Cr: EinsLucaaa]",
"category": 1,
"icon": "https://i.imgur.com/KT4csPW.png"
}

0 comments on commit a7d94a8

Please sign in to comment.