Merge pull request #3554 from bettyblocks/task/introduce-optionTempla… #914
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 component set on acceptance | |
on: | |
push: | |
branches: | |
- acceptance | |
paths-ignore: | |
- 'CHANGELOG.md' | |
- 'package.json' | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16.14.0 | |
- name: Install packages | |
run: yarn install | |
- name: build | |
run: yarn build | |
- name: bundle | |
run: yarn bundle | |
- name: upload | |
env: | |
AZURE_BLOB_ACCOUNT: ${{ secrets.AZURE_BLOB_ACCOUNT_ACCEPTANCE }} | |
AZURE_BLOB_ACCOUNT_KEY: ${{ secrets.AZURE_BLOB_ACCOUNT_KEY_ACCEPTANCE }} | |
run: yarn upload | |
- name: release notes | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
run: npx semantic-release |