Skip to content

Commit

Permalink
feat(ci cd): creating action for boilerplate publish
Browse files Browse the repository at this point in the history
  • Loading branch information
ankitpmi committed Jun 18, 2024
1 parent 2b1289c commit b3f2b07
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/publish_new_version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Publishing new boilerplate version on NPM.

on:
push:
tags:
- "*"
jobs:
build:
if: github.ref == 'refs/heads/feat/CI-CD' || startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: dsstep-1
run: echo "::called on create tag::"

0 comments on commit b3f2b07

Please sign in to comment.