Skip to content

Commit

Permalink
ci: update
Browse files Browse the repository at this point in the history
  • Loading branch information
OpportunityLiu committed Nov 2, 2024
1 parent 14140c2 commit fd14d87
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v1
uses: microsoft/setup-msbuild@v2

- name: Restore the application
run: |
Expand Down Expand Up @@ -66,9 +66,9 @@ jobs:
run: msbuild ExViewer.sln /p:Configuration=Release /p:Platform=${{ matrix.arch }}

- name: Upload build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Packages
name: Packages-${{ matrix.arch }}
path: ExViewer/AppPackages

deploy:
Expand All @@ -78,10 +78,11 @@ jobs:

steps:
- name: Download build artifacts
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: Packages
pattern: Packages-*
path: ./
merge-multiple: true
- name: Upload symbols
env:
MOBILE_CENTER_CURRENT_APP: Opportunity/E-Viewer
Expand Down

0 comments on commit fd14d87

Please sign in to comment.