Skip to content

Commit

Permalink
Merge branch 'master' into csharp-api
Browse files Browse the repository at this point in the history
  • Loading branch information
praydog committed Nov 8, 2024
2 parents be798d9 + 2dcca30 commit a9e23f1
Show file tree
Hide file tree
Showing 41 changed files with 6,185 additions and 213 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
target: [RE2, RE2_TDB66, RE3, RE3_TDB67, RE4, RE7, RE7_TDB49, RE8, DMC5, MHRISE, SF6, DD2]
target: [RE2, RE2_TDB66, RE3, RE3_TDB67, RE4, RE7, RE7_TDB49, RE8, DMC5, MHRISE, SF6, DD2, MHWILDS]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
12 changes: 9 additions & 3 deletions .github/workflows/dev-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
target: [RE2, RE2_TDB66, RE3, RE3_TDB67, RE4, RE7, RE7_TDB49, RE8, DMC5, MHRISE, SF6, DD2]
target: [RE2, RE2_TDB66, RE3, RE3_TDB67, RE4, RE7, RE7_TDB49, RE8, DMC5, MHRISE, SF6, DD2, MHWILDS]
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
Expand Down Expand Up @@ -88,14 +88,20 @@ jobs:
with:
path: ${{github.workspace}}/artifacts

- name: Set padded run number
run: |
$paddedRunNumber = "{0:D5}" -f ${{ github.run_number }}
echo "RUN_NUMBER=$paddedRunNumber" >> $env:GITHUB_ENV
shell: powershell

- name: Create Release
uses: ncipollo/release-action@6c75be85e571768fa31b40abf38de58ba0397db5
with:
repo: REFramework-nightly
owner: praydog
token: ${{ secrets.REPO_TOKEN }}
name: ${{format('REF Nightly {0} ({1})', github.run_number, github.sha)}}
tag: ${{format('nightly-{0}-{1}', github.run_number, github.sha)}}
name: ${{format('REF Nightly {0} ({1})', env.RUN_NUMBER, github.sha)}}
tag: ${{format('nightly-{0}-{1}', env.RUN_NUMBER, github.sha)}}
artifacts: ${{github.workspace}}/artifacts/**/*.zip
makeLatest: true
bodyFile: ${{github.workspace}}/nightly-body.md
Expand Down
Loading

0 comments on commit a9e23f1

Please sign in to comment.