Skip to content

Bump minimatch from 3.1.2 to 3.1.5 (#701) #124

Bump minimatch from 3.1.2 to 3.1.5 (#701)

Bump minimatch from 3.1.2 to 3.1.5 (#701) #124

name: Deploy Action WebRTC JS SDK
on:
push:
branches:
- develop
permissions:
contents: write
pages: write
jobs:
publish-ubuntu-build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@master
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 24
- name: Build AWS SDK
working-directory: ./aws-sdk-build
run: |
npm install
npm run build
rm -rf ../examples/*-kvswebrtc.js
mv dist/*-kvswebrtc.js ../examples
- name: Install dependencies
run: npm install
- name: Run release
run: npm run release
- name: Deploy to Github pages
uses: JamesIves/github-pages-deploy-action@v4.2.5
with:
folder: dist
branch: gh-pages
target-folder: develop
clean: true