diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d3244ea8eea..8a4731a8cf0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -136,7 +136,7 @@ jobs: run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p; - run: yarn --frozen-lockfile - name: Download @parcel/rust Linux Binaries artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: Rust Linux Binaries path: packages/core/rust @@ -149,13 +149,14 @@ jobs: # name: REPL # path: 'packages/dev/repl/dist' - name: Start Deployment - uses: bobheadxi/deployments@v0.4.3 + uses: bobheadxi/deployments@v1 id: deployment with: step: start token: ${{ secrets.GITHUB_TOKEN }} ref: ${{ github.head_ref }} env: Preview + override: false - name: Deploy to Vercel uses: amondnet/vercel-action@v25 id: vercel-action @@ -169,11 +170,13 @@ jobs: alias-domains: | pr-{{PR_NUMBER}}.repl.parceljs.org - name: Update Deployment Status - uses: bobheadxi/deployments@v0.4.3 + uses: bobheadxi/deployments@v1 if: always() with: step: finish token: ${{ secrets.GITHUB_TOKEN }} + env: ${{ steps.deployment.outputs.env }} + override: false status: ${{ job.status }} deployment_id: ${{ steps.deployment.outputs.deployment_id }} env_url: ${{ steps.vercel-action.outputs.preview-url }}