Skip to content

Commit

Permalink
Lets see if shit breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
sbxte committed Jan 5, 2024
1 parent c21d237 commit a729cc1
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/commitTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,27 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up PATH
run: |
echo "${ANDROID_HOME}/build-tools/34.0.0" >> $GITHUB_PATH
- name: Set up JDK 17
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 17
- name: Build mod jar
run: ./gradlew deploy
- name: Upload built jar file
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ github.event.repository.name }}
path: build/libs/${{ github.event.repository.name }}.jar
- name: Automatic release
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest-1.20.2"
prerelease: false
title: "1.0 Build"
files: |
./build/libs/*.jar

0 comments on commit a729cc1

Please sign in to comment.