Merge pull request #3491 from bettyblocks/fix/datetime-picker-show-de… #1629
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 test environments | |
on: | |
push: | |
branches: | |
- edge | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- 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_EDGE }} | |
AZURE_BLOB_ACCOUNT_KEY: ${{ secrets.AZURE_BLOB_ACCOUNT_KEY_EDGE }} | |
run: yarn upload |