Skip to content
This repository was archived by the owner on Apr 30, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: PROD
on:
release:
types: [published]
workflow_dispatch:
inputs:
containers_tag:
Expand All @@ -20,9 +22,9 @@ jobs:
name: Vars
runs-on: ubuntu-24.04
outputs:
tag: ${{ steps.changelog.outputs.tag }}
version: ${{ steps.changelog.outputs.version }}
clean_changelog: ${{ steps.changelog.outputs.clean_changelog }}
tag: ${{ steps.changelog.outputs.tag || github.event.release.tag_name || '' }}
version: ${{ steps.changelog.outputs.version || github.event.release.tag_name || '' }}
clean_changelog: ${{ steps.changelog.outputs.clean_changelog || '' }}
steps:
- uses: actions/checkout@v4
- name: Conventional Changelog Update
Expand Down Expand Up @@ -74,7 +76,7 @@ jobs:
name: Github Release
runs-on: ubuntu-24.04
needs: [vars, deploy]
if: ${{ needs.vars.outputs.tag != '' }}
if: (needs.vars.outputs.tag != '' && github.event_name != 'release')
Comment thread
mishraomp marked this conversation as resolved.
steps:
- name: Create Release
uses: softprops/action-gh-release@v2
Expand Down
Loading