Release Org #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Org | |
on: | |
workflow_dispatch: | |
workflow_run: | |
workflows: ["Build and Release"] # Name of the workflow to listen to | |
types: [completed] # Trigger when the workflow finishes | |
jobs: | |
release: | |
# Only run if the "Build and Release" workflow succeeded | |
# It's okay to run this if it is released to UAT as no changes will stop the script | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
runs-on: self-hosted | |
steps: | |
- name: Release | |
uses: railmapgen/releaser-org@main | |
with: | |
app_name: rmp-gallery |