Skip to content

Commit

Permalink
feat: update github action
Browse files Browse the repository at this point in the history
  • Loading branch information
tishion committed Feb 1, 2025
1 parent 573285e commit 45f6120
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-linux-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@ jobs:

- name: Create SDK artifact
if: github.event_name != 'pull_request'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
# Upload artifact
with:
name: QCefView.linux.x86_64
path: ${{github.workspace}}/out/install/QCefView

- name: Create Demo artifact
if: github.event_name != 'pull_request'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
# Upload artifact
with:
name: QCefViewTest.linux.x86_64
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-macos-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,15 @@ jobs:

- name: Create SDK artifact
if: github.event_name != 'pull_request'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
# Upload artifact
with:
name: QCefView.macos.x86_64
path: ${{github.workspace}}/out/install/QCefView

- name: Create Demo artifact
if: github.event_name != 'pull_request'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
# Upload artifact
with:
name: QCefViewTest.macos.x86_64
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-windows-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@ jobs:

- name: Create SDK artifact
if: github.event_name != 'pull_request'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
# Upload artifact
with:
name: QCefView.windows.x86_64
path: ${{github.workspace}}/out/install/QCefView

- name: Create Demo artifact
if: github.event_name != 'pull_request'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
# Upload artifact
with:
name: QCefViewTest.windows.x86_64
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ jobs:
run: cmake --install ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}

- name: Create SDK artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: QCefView.windows.x86_64
path: ${{github.workspace}}/out/install/QCefView

- name: Create Demo artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: QCefViewTest.windows.x86_64
path: ${{github.workspace}}/out/install/QCefViewTest
Expand Down Expand Up @@ -93,14 +93,14 @@ jobs:
run: cmake --install ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}

- name: Create SDK artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
# Upload artifact
with:
name: QCefView.macos.x86_64
path: ${{github.workspace}}/out/install/QCefView

- name: Create Demo artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
# Upload artifact
with:
name: QCefViewTest.macos.x86_64
Expand Down Expand Up @@ -137,14 +137,14 @@ jobs:
run: cmake --install ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}

- name: Create SDK artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
# Upload artifact
with:
name: QCefView.linux.x86_64
path: ${{github.workspace}}/out/install/QCefView

- name: Create Demo artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
# Upload artifact
with:
name: QCefViewTest.linux.x86_64
Expand All @@ -156,7 +156,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download all artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: ${{github.workspace}}/artifacts

Expand Down

0 comments on commit 45f6120

Please sign in to comment.