Skip to content

UI Library based hero sample using @azure/[email protected] #9

UI Library based hero sample using @azure/[email protected]

UI Library based hero sample using @azure/[email protected] #9

Workflow file for this run

name: Create Chat 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-Chat
unset CI
# Build everything
npm run setup
npm run build
npm run package
7z a -tzip -r "group-chat.zip" ./Chat/dist/*
# Delete output directory
rm -r "./Chat/dist"
- name: Publish
uses: softprops/action-gh-release@v1
with:
files: "group-chat.zip"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}