Skip to content

Commit

Permalink
Create release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Crystal-Spider authored Apr 29, 2024
1 parent 01379da commit 089d307
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Release Workflow

on:
workflow_dispatch:
inputs:
version:
type: string
description: Version number
required: true

jobs:
call-analyze-workflow:
uses: crystal-nest/.github/.github/workflows/analyze.yml@main
secrets: inherit
call-version-update-workflow:
needs: call-analyze-workflow
permissions:
contents: write
uses: crystal-nest/.github/.github/workflows/version_update.yml@main
with:
version: ${{ github.event.inputs.version }}
secrets: inherit
call-release-workflow:
needs: [call-analyze-workflow, call-version-update-workflow]
permissions:
contents: write
uses: crystal-nest/.github/.github/workflows/release.yml@main
secrets: inherit

0 comments on commit 089d307

Please sign in to comment.