ci: use actions/upload-artifact@v3 for .github/workflows/binary_artifact.yml

This commit is contained in:
Delyan Angelov 2023-10-24 11:13:09 +03:00
parent b39b0927d1
commit a7b9518ce5
No known key found for this signature in database
GPG key ID: 66886C0F12D595ED
2 changed files with 8 additions and 8 deletions

View file

@ -35,7 +35,7 @@ jobs:
mv $ZIPNAME v/
cd v/
- name: Create artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: linux
path: v_linux.zip
@ -67,7 +67,7 @@ jobs:
mv $ZIPNAME v/
cd v/
- name: Create artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: macos
path: v_macos.zip
@ -107,7 +107,7 @@ jobs:
# https://superuser.com/a/1336434/194881
# It is needed, because `zip` is not installed by default :-|
- name: Create artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: windows
path: v_windows.zip

View file

@ -60,31 +60,31 @@ jobs:
run: docker exec autobahn_server_wss "python" "/check_results.py"
- name: Publish all reports
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: full report
path: ${{github.workspace}}/reports
- name: Publish report client
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: client
path: ${{github.workspace}}/reports/clients/index.html
- name: Publish report server
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: server
path: ${{github.workspace}}/reports/servers/index.html
- name: Publish all reports WSS
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: full report wss
path: ${{github.workspace}}/reports_wss
- name: Publish report client wss
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: client wss
path: ${{github.workspace}}/reports_wss/clients/index.html