diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-12-09 21:17:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-09 21:17:51 +0100 |
commit | e58147b62cb1b0497d4cdb46b53e4331b8918dd4 (patch) | |
tree | 8ccd6b34daa9d5c41742e134124dd9eec9a50ef5 | |
parent | 95a6698caca228e8a3ec920a59e1904a09c78eaf (diff) |
build: remove cargo publish --dry-run (#8694)
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index be287cecd..1387ae7ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,8 +25,6 @@ jobs: kind: bench - os: ${{ github.repository == 'denoland/deno' && 'ubuntu-latest-xl' || 'ubuntu-18.04' }} kind: lint - - os: ${{ github.repository == 'denoland/deno' && 'ubuntu-latest-xl' || 'ubuntu-18.04' }} - kind: publish-dry-run # Always run master branch builds to completion. This allows the cache to # stay mostly up-to-date in situations where a single job fails due to @@ -268,10 +266,6 @@ jobs: target/release/lib.deno.d.ts draft: true - - name: Publish Dry Run - if: matrix.kind == 'publish-dry-run' - run: cd cli && cargo publish --dry-run - - name: Publish if: | startsWith(matrix.os, 'ubuntu') && |