Skip to content

Commit

Permalink
Create release-publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
DariuszPorowski authored May 9, 2023
1 parent e97d70d commit 69739d0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Publish Release

on:
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#release
release:
types:
- published
workflow_dispatch:
inputs:
tag-name:
description: Tag name that the major tag will point to
required: true

jobs:
publish-release:
uses: raven-actions/.workflows/.github/workflows/__release-publish.yml@main
secrets: inherit
with:
tag-name: ${{ github.event.inputs.tag-name || github.event.release.tag_name }}

0 comments on commit 69739d0

Please sign in to comment.