Skip to content

Commit

Permalink
Updating manifest after each released app, not failing fast in releas…
Browse files Browse the repository at this point in the history
…e matrix anymore
  • Loading branch information
merschformann committed Sep 23, 2024
1 parent 0d7a140 commit d3ec432
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ jobs:
runs-on: ubuntu-latest
needs: determine_environments
strategy:
fail-fast: false
matrix:
environment: ${{fromJson(needs.determine_environments.outputs.environments)}}
environment: ${{ matrix.environment }}
Expand Down
14 changes: 7 additions & 7 deletions .nextmv/release/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,13 @@ def main():
workflow_app=workflow_app,
)

manifest.upload(
client=client,
bucket=options.bucket,
folder=options.folder,
manifest_file=options.manifest,
)

if options.slack_url:
notify_slack(
url=options.slack_url,
Expand All @@ -94,13 +101,6 @@ def main():
marketplace_version=new_marketplace_version,
)

manifest.upload(
client=client,
bucket=options.bucket,
folder=options.folder,
manifest_file=options.manifest,
)


def push_app(name: str, version: str, workflow_app: WorkflowApp):
"""
Expand Down

0 comments on commit d3ec432

Please sign in to comment.