From afe3c2820233a7b4f07a75f4d1e3d0df56727d60 Mon Sep 17 00:00:00 2001 From: jasonwilliams Date: Tue, 15 Mar 2022 17:51:06 +0000 Subject: [PATCH] comment out publish job --- .github/workflows/release.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 208dc89dc2..ebfc2a9255 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,18 +4,18 @@ on: types: [published] jobs: - publish: - runs-on: ubuntu-latest - steps: - - name: Git Checkout - uses: actions/checkout@v3 - - name: Publish to crates.io - uses: actions-rs/cargo@v1 - with: - command: publish - args: -p boa_engine --token ${CARGO_REGISTRY_TOKEN} - env: - CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} + # publish: + # runs-on: ubuntu-latest + # steps: + # - name: Git Checkout + # uses: actions/checkout@v3 + # - name: Publish to crates.io + # uses: actions-rs/cargo@v1 + # with: + # command: publish + # args: -p boa_engine --token ${CARGO_REGISTRY_TOKEN} + # env: + # CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} doc-publish: needs: publish runs-on: ubuntu-latest