Skip to content

Commit

Permalink
updates for legacy build
Browse files Browse the repository at this point in the history
  • Loading branch information
bdw429s committed Jan 29, 2025
1 parent ca32c46 commit f5d43a6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ name: Runwar CI
# If your target is master or develop branch
on:
push:
branches: [ master, develop ]
branches: [ master, develop, master-legacy ]
pull_request:
branches: [ master, develop ]
branches: [ master, develop, master-legacy ]

# We get the required keys
workflow_call:
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Upload JAR to S3

# Run the upload on master branch
if: ${{ github.ref == 'refs/heads/master' || github.ref == 'refs/heads/develop' }}
if: ${{ github.ref == 'refs/heads/master' || github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/master-legacy' }}

uses: jakejarvis/s3-sync-action@master
with:
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ apply plugin: 'java'

group = 'org.cfmlprojects'
description = 'RunWar Gradle build script'
archivesBaseName = 'runwar'
archivesBaseName = 'runwar-legacy'
apply from: 'gradle/config.gradle'

sourceCompatibility = 1.8
Expand Down Expand Up @@ -124,7 +124,7 @@ task gitChangelogTask() {
GitChangelogApi builder;
builder = gitChangelogApiBuilder()

println builder.withFromRef("master")
println builder.withFromRef("master-legacy")
.withToRef("HEAD")
.withGitHubApi("https://api.github.com/repos/Ortus-Solutions/runwar")
.withRemoveIssueFromMessageArgument(false)
Expand Down
2 changes: 1 addition & 1 deletion gradle/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.0-828c4dd8a474bd8675fb91d9791083f13dbf9fd5-5df020e780b029afb9d6f1049e4527dc95d94f72
5.1.0-ca32c46112be26f34e9374b75a7afd43b42f72ee-ca32c46112be26f34e9374b75a7afd43b42f72ee

0 comments on commit f5d43a6

Please sign in to comment.