Create Pull Request Prerelease #157
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 Pull Request Prerelease | |
on: pull_request | |
jobs: | |
build: | |
if: ${{ github.repository_owner == 'cloudflare' }} | |
name: Build & Publish a Prerelease to the Adhoc Registry | |
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: Extract runtime versions | |
run: node .github/extract-runtime-versions.mjs # extract versions before modifying version to include commit hash | |
- name: Upload runtime versions | |
uses: actions/upload-artifact@v3 | |
with: | |
name: runtime-versions.md | |
path: runtime-versions.md | |
- name: Modify package.json version | |
run: node .github/version-script.js | |
- name: Build | |
run: pnpm run build | |
env: | |
NODE_ENV: "production" | |
ALGOLIA_APP_ID: ${{ secrets.ALGOLIA_APP_ID }} | |
ALGOLIA_PUBLIC_KEY: ${{ secrets.ALGOLIA_PUBLIC_KEY }} | |
- name: Pack wrangler | |
run: pnpm pack | |
working-directory: packages/wrangler | |
- name: Upload packaged wrangler artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: npm-package-wrangler-${{ github.event.number }} # encode the PR number into the artifact name | |
path: packages/wrangler/wrangler-*.tgz | |
- name: Pack @cloudflare/pages-shared | |
run: pnpm pack | |
working-directory: packages/pages-shared | |
- name: Upload packaged @cloudflare/pages-shared artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: npm-package-cloudflare-pages-shared-${{ github.event.number }} # encode the PR number into the artifact name | |
path: packages/pages-shared/cloudflare-pages-shared-*.tgz | |
- name: Pack @cloudflare/create-cloudflare | |
run: pnpm pack | |
working-directory: packages/create-cloudflare | |
- name: Upload packaged @cloudflare/create-cloudflare artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: npm-package-create-cloudflare-${{ github.event.number }} # encode the PR number into the artifact name | |
path: packages/create-cloudflare/create-cloudflare-*.tgz |