Update build-storybook.yaml #137
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 new version | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: reattach HEAD | |
run: | | |
git checkout "${GITHUB_REF:11}" | |
- name: Use Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 10.x | |
- name: Install dependencies | |
run: | | |
yarn install --frozen-lockfile --ignore-engines | |
- name: Configure Git User | |
run: | | |
git config --local user.email artyom.resh@csssr.com | |
git config --local user.name ArtyomResh | |
- name: Configure commits signing | |
run: | | |
export GPG_TTY=$(tty) | |
echo -e "$GPG_PRIVATE_KEY" | gpg --batch --import | |
echo "" | gpg --clearsign --passphrase $GPG_PASSPHRASE --pinentry-mode loopback | |
env: | |
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} | |
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | |
- name: Publish new version if required | |
run: | | |
yarn lerna version --conventional-commits --allow-branch=master --no-changelog --sign-git-commit --sign-git-tag --yes | |
yarn release | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Push changes | |
run: | | |
git remote add pub https://csssr-team:${{ secrets.GITHUB_TOKEN }}@github.com/csssr-dreamteam/core-design.git | |
git push pub HEAD:master --follow-tags --no-verify |