Skip to content
Snippets Groups Projects
Commit cdff7875 authored by RenovateBot's avatar RenovateBot :gear:
Browse files

Update actions/upload-artifact action to v3

parent 05f79ef5
No related branches found
No related tags found
1 merge request!109Update actions/upload-artifact action to v3
...@@ -26,14 +26,14 @@ jobs: ...@@ -26,14 +26,14 @@ jobs:
run: ./gradlew about installQuasar cleanFrontend assembleFrontend copyDist build --info run: ./gradlew about installQuasar cleanFrontend assembleFrontend copyDist build --info
- name: List files in libs - name: List files in libs
run: ls -ahl build/libs run: ls -ahl build/libs
- uses: actions/upload-artifact@v2 - uses: actions/upload-artifact@v3
with: with:
name: build-artifacts-gradle name: build-artifacts-gradle
path: | path: |
build/libs/ build/libs/
!build/libs/libraries/ !build/libs/libraries/
if-no-files-found: warn # 'warn' or 'ignore' are also available, defaults to `warn` if-no-files-found: warn # 'warn' or 'ignore' are also available, defaults to `warn`
- uses: actions/upload-artifact@v2 - uses: actions/upload-artifact@v3
if: failure() if: failure()
with: with:
name: gradle-report name: gradle-report
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment