Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kum-viadee committed Aug 2, 2024
1 parent b6bc95d commit 7718d70
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Build and Release
on:
push:
branches:
- main # Change this to your default branch if it's not 'main'
- main # Change this to your default branch if it's not 'main'

jobs:
build:
Expand All @@ -16,7 +16,8 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: '11' # Change this to your required Java version
java-version: "11" # Change this to your required Java version
distribution: "temurin" # Specify the JDK distribution (e.g., 'temurin', 'adopt', etc.)

- name: Build with Maven
run: mvn clean package
Expand All @@ -36,4 +37,4 @@ jobs:
This release includes the JAR file built from the latest commit.
files: target/mateo-screenshot-tool.jar
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 7718d70

Please sign in to comment.