Skip to content

Commit

Permalink
build: fix publishing step (#1495)
Browse files Browse the repository at this point in the history
After adding the Android support the CI fails on tags because cargo publish was being run
on linux GNU and linux Android.
  • Loading branch information
bartlomieju authored Jun 6, 2024
1 parent 0911b83 commit 101be53
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@ jobs:
startsWith(github.ref, 'refs/tags/') &&
github.repository == 'denoland/rusty_v8' &&
startsWith(matrix.config.target , 'x86_64') &&
!endsWith(matrix.config.target , 'android') &&
matrix.config.variant == 'debug' &&
runner.os == 'Linux'
env:
Expand Down

0 comments on commit 101be53

Please sign in to comment.