Skip to content

Add version field to TypeScript SDK package.json #349

Add version field to TypeScript SDK package.json

Add version field to TypeScript SDK package.json #349

name: Tag and Release
on:
push:
tags:
- "v*.*.*"
workflow_dispatch:
inputs:
custom_tag:
description: "Optional custom tag to add to the image (will be prefixed with branch name)"
type: string
required: false
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
jobs:
release-on-push:
runs-on: ubuntu-22.04
env:
GITHUB_TOKEN: ${{ github.token }}
if: startsWith(github.ref, 'refs/tags/v')
steps:
- uses: rymndhng/release-on-push-action@master
with:
bump_version_scheme: patch
release_body: ":rocket: Release Notes !:fireworks: "
use_github_release_notes: true