Skip to content

Commit

Permalink
Update cloud-release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lingdie authored Nov 3, 2023
1 parent de5e5b0 commit 3528044
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/cloud-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,23 @@ jobs:
uses: ./.github/workflows/controllers.yml
with:
push_image: true
push_image_tag: ${{ env.TAG }}
push_image_tag: ${{ github.event.release.tag_name }}

release-frontends:
needs:
- save-sealos
uses: ./.github/workflows/frontend.yml
with:
push_image: true
push_image_tag: ${{ env.TAG }}
push_image_tag: ${{ github.event.release.tag_name }}

release-service:
needs:
- save-sealos
uses: ./.github/workflows/services.yml
with:
push_image: true
push_image_tag: ${{ env.TAG }}
push_image_tag: ${{ github.event.release.tag_name }}

release-cloud:
needs:
Expand All @@ -47,5 +47,5 @@ jobs:
uses: ./.github/workflows/cloud.yml
with:
push_image: true
push_image_tag: ${{ env.TAG }}
build_from: ${{ env.TAG }}
push_image_tag: ${{ github.event.release.tag_name }}
build_from: ${{ github.event.release.tag_name }}

0 comments on commit 3528044

Please sign in to comment.