mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-24 00:00:46 +00:00
08ae91e6dd
* Add static variable and resources to ansible * Add wasm parser to cli * Fix pulling of resources, rs and playbooks * Remove unused import, add publish pkg-yaml * Update package.json * Update generate-metadata * Fix null fields being serialized in script metadata * npm install
27 lines
395 B
Bash
Executable File
27 lines
395 B
Bash
Executable File
#!/bin/bash
|
|
set -eou pipefail
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
|
|
args=${1:-}
|
|
|
|
pushd "pkg-ts" && npm publish ${args}
|
|
popd
|
|
|
|
pushd "pkg-regex" && npm publish ${args}
|
|
popd
|
|
|
|
pushd "pkg-py" && npm publish ${args}
|
|
popd
|
|
|
|
pushd "pkg-go" && npm publish ${args}
|
|
popd
|
|
|
|
pushd "pkg-php" && npm publish ${args}
|
|
popd
|
|
|
|
pushd "pkg-rust" && npm publish ${args}
|
|
popd
|
|
|
|
pushd "pkg-yaml" && npm publish ${args}
|
|
popd
|