Skip to content

Commit

Permalink
Tweaking the naming for the build action
Browse files Browse the repository at this point in the history
  • Loading branch information
robcos committed Dec 13, 2023
1 parent 71d88e2 commit 5dcdce2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/gradle-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle

name: Java CI with Gradle
name: Release artifacts

on:
push:
Expand All @@ -30,12 +30,13 @@ jobs:
with:
gradle-version: 8.4
arguments: -p play-validations memory-footprint:jar
- uses: "marvinpinto/action-automatic-releases@latest"
- name: Release memory-footprint.jar
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: true
title: "Development Build"
title: "Memory Footprint Build"
files: |
LICENSE.txt
**/memory-footprint.jar
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle

name: Java CI with Gradle
name: Continuous Build

on:
push:
Expand Down

0 comments on commit 5dcdce2

Please sign in to comment.