fix: Remove ModalWizard from Parts (#756) #550
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v4 | |
# 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) | |
# ) |