Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
May2Beez committed Oct 7, 2023
1 parent d02f086 commit 450e815
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
# Step 6: Send an embed message with commit details to Discord
- name: Send embed message with timestamp and footer
if: steps.check_secrets.outputs.result == 'success' && steps.get_version.outputs.shouldRelease == 'true'
if: ${{ (steps.check_secrets.outputs.result == 'success') && (steps.get_version.outputs.shouldRelease == 'true') }}
run: |
TIMESTAMP=$(date -u +%Y-%m-%dT%H:%M:%S.%3NZ)
LONG_DATE=$(date -u +"%A, %B %-d, %Y at %T")
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
# Step 7: Send built JAR files to Discord webhook
- name: Send build artifacts to Discord webhook
if: steps.check_secrets.outputs.result == 'success' && steps.get_version.outputs.shouldRelease == 'true'
if: ${{ (steps.check_secrets.outputs.result == 'success') && (steps.get_version.outputs.shouldRelease == 'true') }}
run: |
cd build/libs
for file in *.jar; do
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ baseGroup = com.github.may2beez.farmhelperv2
mcVersion = 1.8.9
modid = farmhelper
version = 5.0.1-pre
shouldRelease = true
shouldRelease = false

0 comments on commit 450e815

Please sign in to comment.