Default branch for maintenance PRs is v2-maintenance branch #6101
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 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 | |
- name: Use Node.js 16.13 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.13 | |
cache: "npm" # cache ~/.npm in case 'npm ci' needs to run | |
- 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: npm ci | |
- name: Modify package.json version | |
run: node .github/version-script.js | |
- name: Build | |
run: npm run build | |
env: | |
NODE_ENV: "production" | |
ALGOLIA_APP_ID: ${{ secrets.ALGOLIA_APP_ID }} | |
ALGOLIA_PUBLIC_KEY: ${{ secrets.ALGOLIA_PUBLIC_KEY }} | |
- name: Pack wrangler | |
run: npm pack | |
working-directory: packages/wrangler | |
- name: Pack @cloudflare/pages-shared | |
run: npm pack | |
working-directory: packages/pages-shared | |
- name: Upload packaged wrangler artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: npm-package-wrangler-${{ github.event.number }} # encode the PR number into the artifact name | |
path: packages/wrangler/wrangler-*.tgz | |
- name: Upload packaged @cloudflare/pages-shared artifact | |
uses: actions/upload-artifact@v2 | |
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 |