Skip to content

Commit

Permalink
Workflow + gitignore changes (#24)
Browse files Browse the repository at this point in the history
* chore: bump actions versions, fix artifacts not uploading

* chore: properly add build folder to gitignores

* chore: upload everything in libs, not the folder

* chore: bump checkout action ver in auto-merge
  • Loading branch information
KTrain5169 authored Aug 1, 2024
1 parent 6f5659f commit 52ea5a7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
auto-merge:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ahmadnassri/action-dependabot-auto-merge@v2
with:
github-token: ${{ secrets.MERGETOKEN }}
12 changes: 6 additions & 6 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/setup-java@v2
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Build with Gradle
run: ./gradlew build --no-daemon
- name: Upload Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: compiled
path: build/libs/*.jar
name: build artifact
path: ./build/libs/*
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ classes
.idea

# gradle
build
build/*
.gradle

#Netbeans
Expand Down

0 comments on commit 52ea5a7

Please sign in to comment.