mirror of
https://github.com/slint-ui/slint.git
synced 2025-12-23 09:19:32 +00:00
CI: update actions/upload-artifact
This commit is contained in:
parent
e0fcf89e86
commit
41967e6d19
9 changed files with 17 additions and 17 deletions
|
|
@ -45,7 +45,7 @@ runs:
|
|||
env:
|
||||
DEBUG: "cypress:server:args"
|
||||
|
||||
- uses: actions/upload-artifact@v2
|
||||
- uses: actions/upload-artifact@v3
|
||||
if: failure()
|
||||
with:
|
||||
name: cypress-screenshots-chrome
|
||||
|
|
|
|||
2
.github/workflows/build_docs.yaml
vendored
2
.github/workflows/build_docs.yaml
vendored
|
|
@ -89,7 +89,7 @@ jobs:
|
|||
npm run docs
|
||||
working-directory: api/node
|
||||
- name: "Upload Docs Artifacts"
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: docs
|
||||
path: |
|
||||
|
|
|
|||
2
.github/workflows/ci.yaml
vendored
2
.github/workflows/ci.yaml
vendored
|
|
@ -153,7 +153,7 @@ jobs:
|
|||
working-directory: ${{ runner.workspace }}/cppbuild
|
||||
run: cmake --build . --config Debug --target package
|
||||
- name: "Create C++ packages artefact"
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: cpp_bin-${{ matrix.os }}
|
||||
path: ${{ runner.workspace }}/cppbuild/Slint-cpp-*
|
||||
|
|
|
|||
2
.github/workflows/cpp_package.yaml
vendored
2
.github/workflows/cpp_package.yaml
vendored
|
|
@ -58,7 +58,7 @@ jobs:
|
|||
working-directory: ${{ runner.workspace }}/cppbuild
|
||||
run: cmake --build . --config Release --target package
|
||||
- name: "Upload C++ packages"
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: cpp_bin
|
||||
path: ${{ runner.workspace }}/cppbuild/Slint-cpp-*
|
||||
|
|
|
|||
2
.github/workflows/embedded_build.yaml
vendored
2
.github/workflows/embedded_build.yaml
vendored
|
|
@ -63,7 +63,7 @@ jobs:
|
|||
command: build
|
||||
args: --release --target=${{ matrix.target }} --workspace --exclude slint-node --exclude mcu-board-support --exclude printerdemo_mcu ${{ env.EXTRA_ARGS }}
|
||||
- name: "Upload printerdemo artifact"
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: printerdemo-${{ matrix.target }}
|
||||
path: |
|
||||
|
|
|
|||
12
.github/workflows/nightly_snapshot.yaml
vendored
12
.github/workflows/nightly_snapshot.yaml
vendored
|
|
@ -69,7 +69,7 @@ jobs:
|
|||
mkdir bin
|
||||
cp target/${{ matrix.toolchain }}/release/${{ matrix.binary_built }} bin/${{ matrix.artifact_name }}
|
||||
- name: "Upload LSP Artifact"
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: vscode-lsp-binary-${{ matrix.toolchain }}
|
||||
path: |
|
||||
|
|
@ -94,7 +94,7 @@ jobs:
|
|||
mkdir bin
|
||||
cp -a target/release/bundle/osx/Slint\ Live\ Preview.app bin
|
||||
- name: "Upload LSP Artifact"
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: vscode-lsp-binary-x86_64-apple-darwin
|
||||
path: |
|
||||
|
|
@ -116,7 +116,7 @@ jobs:
|
|||
mkdir bin
|
||||
cp -a target/aarch64-apple-darwin/release/slint-lsp bin/slint-lsp-aarch64-apple-darwin
|
||||
- name: "Upload LSP Artifact"
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: vscode-lsp-binary-aarch64-apple-darwin
|
||||
path: |
|
||||
|
|
@ -139,7 +139,7 @@ jobs:
|
|||
mv tmp Slint\ Live\ Preview.app/Contents/MacOS/slint-lsp
|
||||
rm -rf bin
|
||||
- name: "Upload LSP macOS bundle Artifact"
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: vscode-lsp-binary-darwin
|
||||
path: .
|
||||
|
|
@ -169,7 +169,7 @@ jobs:
|
|||
mkdir bin
|
||||
cp target/${{ matrix.target }}/release/slint-lsp bin/slint-lsp-${{ matrix.target }}
|
||||
- name: "Upload LSP Artifact"
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: vscode-lsp-binary-${{ matrix.target }}
|
||||
path: |
|
||||
|
|
@ -233,7 +233,7 @@ jobs:
|
|||
extensionFile: ${{ steps.publishToVSCM.outputs.vsixPath }}
|
||||
packagePath: ''
|
||||
- name: "Upload extension artifact"
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: slint-vscode.zip
|
||||
path: |
|
||||
|
|
|
|||
6
.github/workflows/slint_tool_binary.yaml
vendored
6
.github/workflows/slint_tool_binary.yaml
vendored
|
|
@ -57,7 +57,7 @@ jobs:
|
|||
bash -x ./scripts/prepare_binary_package.sh pkg\${{ github.event.inputs.program || inputs.program }} --with-qt
|
||||
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: ${{ github.event.inputs.program || inputs.program }}-windows
|
||||
path: |
|
||||
|
|
@ -87,7 +87,7 @@ jobs:
|
|||
- name: Tar artifacts to preserve permissions
|
||||
run: tar czvf ${{ github.event.inputs.program || inputs.program }}-linux.tar.gz ${{ github.event.inputs.program || inputs.program }}
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: ${{ github.event.inputs.program || inputs.program }}-linux
|
||||
path: ${{ github.event.inputs.program || inputs.program }}-linux.tar.gz
|
||||
|
|
@ -132,7 +132,7 @@ jobs:
|
|||
- name: Tar artifacts to preserve permissions
|
||||
run: tar czvf ${{ github.event.inputs.program || inputs.program }}-macos.tar.gz ${{ github.event.inputs.program || inputs.program }}
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: ${{ github.event.inputs.program || inputs.program }}-macos
|
||||
path: ${{ github.event.inputs.program || inputs.program }}-macos.tar.gz
|
||||
|
|
|
|||
2
.github/workflows/wasm_demos.yaml
vendored
2
.github/workflows/wasm_demos.yaml
vendored
|
|
@ -72,7 +72,7 @@ jobs:
|
|||
wasm-pack build --release --target web
|
||||
working-directory: examples/opengl_underlay
|
||||
- name: "Upload Demo Artifacts"
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: wasm_demo
|
||||
path: |
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ jobs:
|
|||
working-directory: tools/online_editor
|
||||
|
||||
- name: "Upload wasm Artifacts"
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: wasm
|
||||
path: |
|
||||
|
|
@ -64,7 +64,7 @@ jobs:
|
|||
working-directory: tools/online_editor
|
||||
|
||||
- name: "Upload online_editor Artifacts"
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: online_editor
|
||||
path: tools/online_editor/dist/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue