Skip to content

Commit

Permalink
Merge branch 'zdobnikau/publish-builtin-plugins-ci' into test/publish…
Browse files Browse the repository at this point in the history
…-builtin-plugins-ci
  • Loading branch information
DelevoXDG committed Oct 16, 2024
2 parents e006105 + 601aaef commit 7e4bb42
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions .github/workflows/publish_plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ jobs:
pushd $HOME/pkg
scarb init --no-vcs
echo "CAIRO_VERSION=$(scarb metadata --format-version 1 | jq -r '.app_version_info.cairo.version')" >> $GITHUB_OUTPUT
popd
env:
SCARB_INIT_TEST_RUNNER: cairo-test

Expand All @@ -42,20 +41,24 @@ jobs:
- name: Publish starknet
if: steps.check-plugins.outputs.starknet_exists != 'true'
working-directory: $HOME/.cache/scarb/registry/std/7a2cdc90b/starknet
run: scarb publish --index https://scarbs.dev --no-verify
run: |
pushd $HOME/.cache/scarb/registry/std/7a2cdc90b/starknet
scarb publish --index https://scarbs.dev --no-verify
- name: Publish cairo_run
if: steps.check-plugins.outputs.cairo_run_exists != 'true'
working-directory: $HOME/.cache/scarb/registry/std/7a2cdc90b/cairo_run
run: scarb publish --index https://scarbs.dev --no-verify
run: |
pushd $HOME/.cache/scarb/registry/std/7a2cdc90b/cairo_run
scarb publish --index https://scarbs.dev --no-verify
- name: Publish cairo_test
if: steps.check-plugins.outputs.cairo_test_exists != 'true'
working-directory: $HOME/.cache/scarb/registry/std/7a2cdc90b/test_plugin
run: scarb publish --index https://scarbs.dev --no-verify
run: |
pushd $HOME/.cache/scarb/registry/std/7a2cdc90b/test_plugin
scarb publish --index https://scarbs.dev --no-verify
- name: Publish assert_macros
if: steps.check-plugins.outputs.assert_macros_exists != 'true'
working-directory: $HOME/.cache/scarb/registry/std/7a2cdc90b/assert_macros
run: scarb publish --index https://scarbs.dev --no-verify
run: |
pushd $HOME/.cache/scarb/registry/std/7a2cdc90b/assert_macros
scarb publish --index https://scarbs.dev --no-verify

0 comments on commit 7e4bb42

Please sign in to comment.