feat: add ObjectStorage and ObjectInfo framework components
- Add ObjectStorage and ObjectInfo classes for framework storage - Update build-image.yml workflow configuration
This commit is contained in:
@@ -772,7 +772,11 @@ jobs:
|
||||
deploy-staging:
|
||||
name: Auto-deploy to Staging
|
||||
needs: [changes, build, runtime-base]
|
||||
if: (github.ref_name == 'staging' || github.head_ref == 'staging' || (github.ref_name == '' && contains(github.ref, 'staging'))) && needs.changes.outputs.needs_build == 'true'
|
||||
if: >
|
||||
(github.ref_name == 'staging' || github.head_ref == 'staging' || (github.ref_name == '' && contains(github.ref, 'staging')))
|
||||
&& needs.changes.result == 'success'
|
||||
&& (needs.build.result == 'success' || needs.build.result == 'skipped')
|
||||
&& (needs.runtime-base.result == 'success' || needs.runtime-base.result == 'skipped')
|
||||
runs-on: ubuntu-latest
|
||||
environment:
|
||||
name: staging
|
||||
|
||||
Reference in New Issue
Block a user