mirror of
https://github.com/denoland/rusty_v8.git
synced 2024-12-25 00:29:14 -05:00
don't publish from arm64 build (#286)
fixing https://github.com/denoland/rusty_v8/runs/454491681
This commit is contained in:
parent
fd286aaf34
commit
9b83495976
1 changed files with 2 additions and 0 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -111,9 +111,11 @@ jobs:
|
||||||
# run: cargo package -vv --locked
|
# run: cargo package -vv --locked
|
||||||
|
|
||||||
- name: Publish
|
- name: Publish
|
||||||
|
# Only publish on x64 linux when there's a git tag:
|
||||||
if: >
|
if: >
|
||||||
startsWith(github.ref, 'refs/tags/') &&
|
startsWith(github.ref, 'refs/tags/') &&
|
||||||
github.repository == 'denoland/rusty_v8' &&
|
github.repository == 'denoland/rusty_v8' &&
|
||||||
|
startsWith(matrix.config.target , 'x86_64') &&
|
||||||
runner.os == 'Linux'
|
runner.os == 'Linux'
|
||||||
env:
|
env:
|
||||||
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
|
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
|
||||||
|
|
Loading…
Reference in a new issue