Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
**Phenomenon and reproduction steps**

**Root cause and solution**

**Impactions**

**Test method**

**Affected branch(es)**

* main

**Checklist**

- [ ] Dependencies update required
- [ ] Common bug (similar problem in other repo)
  • Loading branch information
LYootsz committed Feb 10, 2025
1 parent a59d5a7 commit 6dfe211
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/app-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
tar cvf app-artifact-amd64.tar ./app/output_amd64
- name: Archive code build results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: app build results amd64
path: |
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
tar cvf app-artifact-arm64.tar ./app/output_arm64
- name: Archive code build results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: app build results arm64
path: |
Expand Down Expand Up @@ -181,13 +181,13 @@ jobs:
echo "IMAGE_TAG=$(git rev-list --count HEAD)" >> $GITHUB_ENV
- name: Download code build results
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: app build results arm64
path: .

- name: Download code build results
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: app build results amd64
path: .
Expand Down

0 comments on commit 6dfe211

Please sign in to comment.