mirror of
https://github.com/vlang/v.git
synced 2025-09-13 22:42:26 +03:00
ci: bump actions/upload-artifact from 3 to 4 (#20803)
This commit is contained in:
parent
625193230a
commit
9253637147
2 changed files with 9 additions and 9 deletions
8
.github/workflows/binary_artifact.yml
vendored
8
.github/workflows/binary_artifact.yml
vendored
|
@ -35,7 +35,7 @@ jobs:
|
||||||
mv $ZIPNAME v/
|
mv $ZIPNAME v/
|
||||||
cd v/
|
cd v/
|
||||||
- name: Create artifact
|
- name: Create artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: linux
|
name: linux
|
||||||
path: ${{ env.ZIPNAME }}
|
path: ${{ env.ZIPNAME }}
|
||||||
|
@ -67,7 +67,7 @@ jobs:
|
||||||
mv $ZIPNAME v/
|
mv $ZIPNAME v/
|
||||||
cd v/
|
cd v/
|
||||||
- name: Create artifact
|
- name: Create artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: macos_x86_64
|
name: macos_x86_64
|
||||||
path: ${{ env.ZIPNAME }}
|
path: ${{ env.ZIPNAME }}
|
||||||
|
@ -100,7 +100,7 @@ jobs:
|
||||||
mv $ZIPNAME v/
|
mv $ZIPNAME v/
|
||||||
cd v/
|
cd v/
|
||||||
- name: Create artifact
|
- name: Create artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: macos_arm64
|
name: macos_arm64
|
||||||
path: ${{ env.ZIPNAME }}
|
path: ${{ env.ZIPNAME }}
|
||||||
|
@ -140,7 +140,7 @@ jobs:
|
||||||
# https://superuser.com/a/1336434/194881
|
# https://superuser.com/a/1336434/194881
|
||||||
# It is needed, because `zip` is not installed by default :-|
|
# It is needed, because `zip` is not installed by default :-|
|
||||||
- name: Create artifact
|
- name: Create artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: windows
|
name: windows
|
||||||
path: ${{ env.ZIPNAME }}
|
path: ${{ env.ZIPNAME }}
|
||||||
|
|
10
.github/workflows/websockets_ci.yml
vendored
10
.github/workflows/websockets_ci.yml
vendored
|
@ -60,31 +60,31 @@ jobs:
|
||||||
run: docker exec autobahn_server_wss "python" "/check_results.py"
|
run: docker exec autobahn_server_wss "python" "/check_results.py"
|
||||||
|
|
||||||
- name: Publish all reports
|
- name: Publish all reports
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: full report
|
name: full report
|
||||||
path: ${{github.workspace}}/reports
|
path: ${{github.workspace}}/reports
|
||||||
|
|
||||||
- name: Publish report client
|
- name: Publish report client
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: client
|
name: client
|
||||||
path: ${{github.workspace}}/reports/clients/index.html
|
path: ${{github.workspace}}/reports/clients/index.html
|
||||||
|
|
||||||
- name: Publish report server
|
- name: Publish report server
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: server
|
name: server
|
||||||
path: ${{github.workspace}}/reports/servers/index.html
|
path: ${{github.workspace}}/reports/servers/index.html
|
||||||
|
|
||||||
- name: Publish all reports WSS
|
- name: Publish all reports WSS
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: full report wss
|
name: full report wss
|
||||||
path: ${{github.workspace}}/reports_wss
|
path: ${{github.workspace}}/reports_wss
|
||||||
|
|
||||||
- name: Publish report client wss
|
- name: Publish report client wss
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: client wss
|
name: client wss
|
||||||
path: ${{github.workspace}}/reports_wss/clients/index.html
|
path: ${{github.workspace}}/reports_wss/clients/index.html
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue