Skip to content

Commit

Permalink
Merge pull request #4603 from rjhancock/duplicate-file-fixes
Browse files Browse the repository at this point in the history
Removed duplicate files in packaged build
  • Loading branch information
rjhancock authored Aug 10, 2024
2 parents 5ab5959 + 9183b33 commit a16a4fb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,6 @@ jobs:
fi
exit 0
- name: Add MMRevision file
run: |
echo ${{ steps.find_mm.outputs.mmBranch }} >> mekhq/MekHQ/mm-revision.txt
- name: Checkout MegaMek
uses: actions/checkout@v4
with:
Expand All @@ -71,10 +67,6 @@ jobs:
fi
exit 0
- name: Add MMLRevision file
run: |
echo ${{ steps.find_mml.outputs.mmlBranch }} >> mekhq/MekHQ/mml-revision.txt
- name: Checkout MegaMekLab
uses: actions/checkout@v4
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:
analyze:
name: Analyze
strategy:
matrix:
os: [ubuntu-latest]
java-distribution: [temurin]
java-version: [17]
fail-fast: false
runs-on: [ubuntu-latest]

Expand Down
4 changes: 3 additions & 1 deletion MekHQ/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,9 @@ distributions {
}

// MegaMekLab Includes
from ("${mmlDir}/megameklab/build/files")
from ("${mmlDir}/megameklab/build/files") {
exclude 'data/mechfiles'
}
from ("${mmlDir}/megameklab/build/launch4j/lib") {
into "${lib}"
}
Expand Down

0 comments on commit a16a4fb

Please sign in to comment.