Skip to content

Commit

Permalink
[Feat] Continuous Delivery triggered on specific tag push (#5)
Browse files Browse the repository at this point in the history
workflow trigger modification-> add `on:push:tag:v*`
renamed: .github/workflows/manual-triggered-tag-based-release.yml
        -> .github/workflows/publish-tagged-commit-to-releases-branch.yml
  • Loading branch information
MijazzChan authored Feb 24, 2022
1 parent 51e87c5 commit bd623c7
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Manual Triggered Release
name: Publish Tagged Commit to Releases Branch

on: workflow_dispatch
on:
push:
tags:
- "v*"

workflow_dispatch:

jobs:
release-on-tag:
Expand Down

0 comments on commit bd623c7

Please sign in to comment.