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:
2025-11-01 21:53:23 +01:00
parent 9ecc88a0eb
commit 477522bc1e
3 changed files with 38 additions and 1 deletions

View File

@@ -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