mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2024-11-23 19:25:35 +08:00
+ reorder steps to upload artifact after build
+ use commit hash in artifact name
This commit is contained in:
parent
c408cc4808
commit
69b29efc26
22
.github/workflows/msbuild.yml
vendored
22
.github/workflows/msbuild.yml
vendored
@ -87,7 +87,6 @@ jobs:
|
||||
path: build-win-deps
|
||||
fail-on-cache-miss: true
|
||||
|
||||
### build
|
||||
- name: Clone third-party build helpers (common/win)
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
@ -96,29 +95,30 @@ jobs:
|
||||
path: "${{env.THIRD_PARTY_BASE_DIR}}/common/win"
|
||||
lfs: true
|
||||
|
||||
### build + upload release
|
||||
- name: Build release mode
|
||||
shell: cmd
|
||||
working-directory: ${{env.GITHUB_WORKSPACE}}
|
||||
run: build_win.bat release
|
||||
|
||||
- name: Upload build (release)
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: "build-win-release-${{ github.sha }}"
|
||||
path: 'build-win/release/'
|
||||
if-no-files-found: 'error'
|
||||
compression-level: 9
|
||||
|
||||
### build + upload debug
|
||||
- name: Build debug mode
|
||||
shell: cmd
|
||||
working-directory: ${{env.GITHUB_WORKSPACE}}
|
||||
run: build_win.bat debug
|
||||
|
||||
### upload artifacts
|
||||
- name: Upload build (release)
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: 'build-win-release'
|
||||
path: 'build-win/release/'
|
||||
if-no-files-found: 'error'
|
||||
compression-level: 9
|
||||
|
||||
- name: Upload build (debug)
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: 'build-win-debug'
|
||||
name: "build-win-debug-${{ github.sha }}"
|
||||
path: 'build-win/debug/'
|
||||
if-no-files-found: 'error'
|
||||
compression-level: 9
|
||||
|
Loading…
Reference in New Issue
Block a user