Skip to content

Commit

Permalink
Merge pull request #216 from networkservicemesh/release-workflow
Browse files Browse the repository at this point in the history
Add release workflow
  • Loading branch information
denis-tingaikin authored Aug 10, 2023
2 parents 5a7cba7 + d08a4f7 commit a1f4792
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: Release
on:
workflow_run:
types:
- completed
workflows:
- "ci"
jobs:
print-debug-info:
name: Print debug info for Release workflow
runs-on: ubuntu-latest
steps:
- uses: hmarr/debug-action@v2

create-release:
name: Create release
if: ${{ github.event.workflow_run.conclusion == 'success' && contains(github.event.workflow_run.head_branch, 'release/') }}
uses: networkservicemesh/.github/.github/workflows/release.yaml@main
secrets:
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit a1f4792

Please sign in to comment.