[Upd] Bump SForms to support new Intl provider and remove unnecessary… #7
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 NPM Alpha Package | |
on: | |
push: | |
branches: | |
- "*" | |
- "!master" | |
jobs: | |
publish-npm-alpha: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Get short SHA | |
id: sha | |
run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)" | |
- uses: "phips28/gh-action-bump-version@master" | |
with: | |
default: prerelease | |
minor-wording: "MINOR RELEASE" | |
major-wording: "MAJOR RELEASE" | |
patch-wording: "PATCH RELEASE" | |
rc-wording: null | |
preid: ${{ format('alpha-{0}', steps.sha.outputs.sha_short) }} | |
skip-tag: "true" | |
skip-commit: "true" | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
registry-url: https://registry.npmjs.org | |
- run: npm ci | |
- run: npm test | |
- run: npm run build | |
- run: npm publish --access public --ignore-scripts --tag alpha | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}} |