UI Library hero sample using @azure/[email protected] #13
Workflow file for this run
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: Create Calling Sample Release | |
on: | |
release: | |
types: [created] | |
name: Release | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Setup Node 16 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- name: Build | |
shell: bash | |
run: | | |
release_name=Group-Calling | |
unset CI | |
# Build everything | |
npm run setup | |
npm run build | |
npm run package | |
7z a -tzip -r "group-calling.zip" ./Calling/dist/* | |
# Delete output directory | |
# rm -r "./Calling/dist" | |
- name: Publish | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: "group-calling.zip" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |