[Stream] WebRTC Template Improvements (#4157) #6
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: Prerelease create-cloudflare | |
on: | |
repository_dispatch: | |
types: [pre-release-create-cloudflare] | |
push: | |
branches: | |
- main | |
jobs: | |
prerelease: | |
if: ${{ github.repository_owner == 'cloudflare' }} | |
name: Build & Publish a beta release of create-cloudflare to NPM | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8.8.0 | |
- name: Use Node.js 16.18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.18 | |
cache: "pnpm" | |
- name: Install workerd Dependencies | |
if: ${{ runner.os == 'Linux' }} | |
run: | | |
export DEBIAN_FRONTEND=noninteractive | |
sudo apt-get update | |
sudo apt-get install -y libc++1 | |
- name: Install NPM Dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Modify package.json version | |
run: node .github/version-script.js create-cloudflare | |
- name: Build packages | |
run: pnpm run build | |
env: | |
NODE_ENV: "production" | |
CI_OS: ${{ runner.os }} | |
- name: Publish Beta to NPM | |
run: pnpm publish --tag beta | |
env: | |
NPM_PUBLISH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} | |
working-directory: packages/create-cloudflare |