mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 10:56:24 +00:00
Bump actions/upload-artifact from 2 to 3 (#976)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
1aa82e40d9
commit
343bd2c86e
10
.github/workflows/android-build.yml
vendored
10
.github/workflows/android-build.yml
vendored
@ -66,7 +66,7 @@ jobs:
|
|||||||
# Create artifacts (only for Release)
|
# Create artifacts (only for Release)
|
||||||
# Create app-universal-release APK artifact asset for Release
|
# Create app-universal-release APK artifact asset for Release
|
||||||
- name: 'Upload universal .apk Release Artifact (for Release)'
|
- name: 'Upload universal .apk Release Artifact (for Release)'
|
||||||
uses: actions/upload-artifact@v3.1.3
|
uses: actions/upload-artifact@v3
|
||||||
if: inputs.semver != '' # If this workflow is called from release.yml
|
if: inputs.semver != '' # If this workflow is called from release.yml
|
||||||
with:
|
with:
|
||||||
name: robosats-${{ inputs.semver }}-universal.apk
|
name: robosats-${{ inputs.semver }}-universal.apk
|
||||||
@ -74,7 +74,7 @@ jobs:
|
|||||||
|
|
||||||
# Create app-arm64-v8a-release APK artifact asset for Release
|
# Create app-arm64-v8a-release APK artifact asset for Release
|
||||||
- name: 'Upload arm64-v8a .apk Release Artifact (for Release)'
|
- name: 'Upload arm64-v8a .apk Release Artifact (for Release)'
|
||||||
uses: actions/upload-artifact@v3.1.3
|
uses: actions/upload-artifact@v3
|
||||||
if: inputs.semver != '' # If this workflow is called from release.yml
|
if: inputs.semver != '' # If this workflow is called from release.yml
|
||||||
with:
|
with:
|
||||||
name: robosats-${{ inputs.semver }}-arm64-v8a.apk
|
name: robosats-${{ inputs.semver }}-arm64-v8a.apk
|
||||||
@ -82,7 +82,7 @@ jobs:
|
|||||||
|
|
||||||
# Create app-armeabi-v7a-release APK artifact asset for Release
|
# Create app-armeabi-v7a-release APK artifact asset for Release
|
||||||
- name: 'Upload armeabi-v7a .apk Release Artifact (for Release)'
|
- name: 'Upload armeabi-v7a .apk Release Artifact (for Release)'
|
||||||
uses: actions/upload-artifact@v3.1.3
|
uses: actions/upload-artifact@v3
|
||||||
if: inputs.semver != '' # If this workflow is called from release.yml
|
if: inputs.semver != '' # If this workflow is called from release.yml
|
||||||
with:
|
with:
|
||||||
name: robosats-${{ inputs.semver }}-armeabi-v7a.apk
|
name: robosats-${{ inputs.semver }}-armeabi-v7a.apk
|
||||||
@ -90,7 +90,7 @@ jobs:
|
|||||||
|
|
||||||
# Create app-x86_64-release APK artifact asset for Release
|
# Create app-x86_64-release APK artifact asset for Release
|
||||||
- name: 'Upload x86_64 .apk Release Artifact (for Release)'
|
- name: 'Upload x86_64 .apk Release Artifact (for Release)'
|
||||||
uses: actions/upload-artifact@v3.1.3
|
uses: actions/upload-artifact@v3
|
||||||
if: inputs.semver != '' # If this workflow is called from release.yml
|
if: inputs.semver != '' # If this workflow is called from release.yml
|
||||||
with:
|
with:
|
||||||
name: robosats-${{ inputs.semver }}-x86_64.apk
|
name: robosats-${{ inputs.semver }}-x86_64.apk
|
||||||
@ -98,7 +98,7 @@ jobs:
|
|||||||
|
|
||||||
# Create app-x86-release APK artifact asset for Release
|
# Create app-x86-release APK artifact asset for Release
|
||||||
- name: 'Upload x86 .apk Release Artifact (for Release)'
|
- name: 'Upload x86 .apk Release Artifact (for Release)'
|
||||||
uses: actions/upload-artifact@v3.1.3
|
uses: actions/upload-artifact@v3
|
||||||
if: inputs.semver != '' # If this workflow is called from release.yml
|
if: inputs.semver != '' # If this workflow is called from release.yml
|
||||||
with:
|
with:
|
||||||
name: robosats-${{ inputs.semver }}-x86.apk
|
name: robosats-${{ inputs.semver }}-x86.apk
|
||||||
|
10
.github/workflows/frontend-build.yml
vendored
10
.github/workflows/frontend-build.yml
vendored
@ -50,27 +50,27 @@ jobs:
|
|||||||
cd frontend
|
cd frontend
|
||||||
npm run build
|
npm run build
|
||||||
- name: 'Archive Web Basic Build Results'
|
- name: 'Archive Web Basic Build Results'
|
||||||
uses: actions/upload-artifact@v3.1.3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: web-main-js
|
name: web-main-js
|
||||||
path: frontend/static/frontend/main.js
|
path: frontend/static/frontend/main.js
|
||||||
- name: 'Archive Web Basic SelfhostedBuild Results'
|
- name: 'Archive Web Basic SelfhostedBuild Results'
|
||||||
uses: actions/upload-artifact@v3.1.3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: web-basic-selfhosted-js
|
name: web-basic-selfhosted-js
|
||||||
path: frontend/static/frontend/basic.selfhosted.js
|
path: frontend/static/frontend/basic.selfhosted.js
|
||||||
- name: 'Archive Web PRO Build Results'
|
- name: 'Archive Web PRO Build Results'
|
||||||
uses: actions/upload-artifact@v3.1.3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: web-pro-js
|
name: web-pro-js
|
||||||
path: frontend/static/frontend/pro.js
|
path: frontend/static/frontend/pro.js
|
||||||
- name: 'Archive Web PRO SelhostedBuild Results'
|
- name: 'Archive Web PRO SelhostedBuild Results'
|
||||||
uses: actions/upload-artifact@v3.1.3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: web-pro-selfhosted-js
|
name: web-pro-selfhosted-js
|
||||||
path: frontend/static/frontend/pro.selfhosted.js
|
path: frontend/static/frontend/pro.selfhosted.js
|
||||||
- name: 'Archive Mobile Build Results'
|
- name: 'Archive Mobile Build Results'
|
||||||
uses: actions/upload-artifact@v3.1.3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: mobile-web.bundle
|
name: mobile-web.bundle
|
||||||
path: mobile/html/Web.bundle
|
path: mobile/html/Web.bundle
|
||||||
|
2
.github/workflows/integration-tests.yml
vendored
2
.github/workflows/integration-tests.yml
vendored
@ -77,7 +77,7 @@ jobs:
|
|||||||
USE_TOR: False
|
USE_TOR: False
|
||||||
|
|
||||||
- name: 'Upload coverage report'
|
- name: 'Upload coverage report'
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: coverage-report
|
name: coverage-report
|
||||||
path: htmlcov/
|
path: htmlcov/
|
Loading…
Reference in New Issue
Block a user