Skip to content

feat: Add min and max to TextInput (#700) #492

feat: Add min and max to TextInput (#700)

feat: Add min and max to TextInput (#700) #492

Workflow file for this run

name: build
on:
push:
branches:
- main
jobs:
tag-release:
runs-on: ubuntu-latest
outputs:
release-version: ${{ steps.release-version.outputs.version }}
steps:
- name: Checkout
uses: actions/checkout@v3
# Tag new release
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 14
- name: Install Semantic Release, plugins and preset
working-directory: .
run: |
npm install -g \
[email protected] \
[email protected]
# - name: Run Sematic Release
# working-directory: .
# env:
# GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# run: semantic-release --branches main
# # Get new release version
# - name: Get release tag
# id: release-tag
# uses: WyriHaximus/[email protected]
# - name: Get release version
# id: release-version
# uses: actions/github-script@v6
# with:
# script: |
# core.setOutput(
# 'version',
# '${{ steps.release-tag.outputs.tag }}'.slice(1)
# )