Update index.js (#845) #645
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: Publish | |
# | |
# | |
# ~ IMPORTANT ~ | |
# If your commit summary starts with `Release` | |
# - We will attempt to automatically publish your commit (although, your commit will not be automatically approved) | |
# - *NOTE* | |
# - We will attempt to create a new release using the commit description as release notes | |
# | |
# | |
on: | |
push: | |
branches: | |
- main | |
- master | |
- experimental | |
jobs: | |
publish: | |
if: startsWith(github.event.head_commit.message, 'Release ') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Publish | |
run: | | |
npm install | |
npm run build | |
npm run test | |
npm config set @material-table:registry https://registry.npmjs.org/ | |
npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_AUTH_TOKEN }} | |
npm publish --ignore-scripts | |
create-release: | |
needs: publish | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set env | |
run: | | |
RV=$(echo $${{ github.event.head_commit.message }} | awk '{print $NF}') | |
echo "RELEASE_VERSION=$RV" >> $GITHUB_ENV | |
echo $RV | |
- name: Create Release | |
id: create_release | |
uses: ncipollo/release-action@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token | |
with: | |
name: ${{ env.RELEASE_VERSION }} | |
body: ${{ github.event.head_commit.message }} | |
draft: false | |
prerelease: false | |
tag: ${{ env.RELEASE_VERSION }} | |
generateReleaseNotes: true |