delete #74
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: CLI R2 | |
on: | |
push: | |
branches: | |
- "*.staging" | |
# cancel in-progress runs on new commits to same PR (gitub.event.number) | |
concurrency: | |
group: vercel-cli-r2-${{ github.workflow }}-${{ github.event.number || github.sha }} | |
cancel-in-progress: true | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
statuses: write # This is required for the GitHub Script createCommitStatus to work | |
packages: write | |
jobs: | |
build: | |
env: | |
COMPATIBILITY_DATE: 2024-04-10 | |
environment: | |
name: "staging" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.sha }} # HEAD commit instead of merge commit | |
- uses: pnpm/action-setup@v3 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: pnpm | |
- name: pnpm instal | |
run: pnpm install --ignore-scripts | |
- name: pnpm build | |
run: pnpm --filter 'webstudio-cloudflare-template^...' run build | |
# Ideally, execute 'pnpm deploy --prod', but @remix-run/dev doesn't support this flag. | |
# Despite being listed as a dependency, @remix-run/dev does not install the remix cli. | |
# TODO: Minimize artefact size due to frequent downloads on each publish. | |
- name: pnpm deploy | |
run: pnpm --filter 'webstudio-cloudflare-template' deploy "${{ github.workspace }}/../cloudflare-template" | |
- name: Make archive | |
run: | | |
tar --use-compress-program="zstd -19" -cf cloudflare-template.tar.zst cloudflare-template | |
working-directory: ${{ github.workspace }}/.. | |
- name: Copy artifact | |
run: | | |
# For staging | |
aws s3 cp cloudflare-template.tar.zst "s3://${ARTEFACT_BUCKET_NAME}/public/cloudflare-template/${{ github.ref_name }}.tar.zst" | |
# For production can be cached forever | |
aws s3 cp \ | |
--metadata-directive REPLACE --cache-control "public,max-age=31536102,immutable" \ | |
cloudflare-template.tar.zst "s3://${ARTEFACT_BUCKET_NAME}/public/cloudflare-template/${{ github.sha }}.tar.zst" | |
working-directory: ${{ github.workspace }}/.. | |
env: | |
AWS_ENDPOINT_URL_S3: ${{ secrets.AWS_ENDPOINT_URL_S3 }} | |
AWS_REGION: ${{ secrets.AWS_REGION }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
ARTEFACT_BUCKET_NAME: ${{ secrets.ARTEFACT_BUCKET_NAME }} | |
checks: | |
environment: | |
name: "staging" | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: "9" | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Copy atrifact via http | |
run: curl -o cloudflare-template.tar.zst ${{ secrets.ARTEFACT_BUCKET_URL }}/public/cloudflare-template/${{ github.ref_name }}.tar.zst | |
- name: Extract archive | |
run: tar --use-compress-program="zstd -d" -xf cloudflare-template.tar.zst -C . | |
- name: Webstudio Build | |
run: pnpm webstudio build --template internal --template saas-helpers --template cloudflare --assets false | |
working-directory: ${{ github.workspace }}/cloudflare-template | |
- name: Remix Build | |
run: pnpm build | |
working-directory: ${{ github.workspace }}/cloudflare-template | |
- name: WRANGLER Build | |
run: | | |
NODE_ENV=production pnpm wrangler deploy \ | |
--name build \ | |
--compatibility-date '${COMPATIBILITY_DATE}' \ | |
--minify true \ | |
--logpush true \ | |
--dry-run \ | |
--outdir dist \ | |
'./functions/[[path]].ts' | |
working-directory: ${{ github.workspace }}/cloudflare-template |