plugin changes
This commit is contained in:
parent
9dfe4eb2ef
commit
f0efd4b6c1
|
@ -13,4 +13,4 @@ RUN apk add --no-cache \
|
||||||
&& rustup target add wasm32-unknown-unknown \
|
&& rustup target add wasm32-unknown-unknown \
|
||||||
&& chmod +x /bin/plugin.sh
|
&& chmod +x /bin/plugin.sh
|
||||||
|
|
||||||
ENTRYPOINT /bin/plugin.sh
|
ENTRYPOINT ["/bin/sh", "/bin/plugin.sh"]
|
||||||
|
|
|
@ -7,6 +7,16 @@
|
||||||
# publish: username, token
|
# publish: username, token
|
||||||
# build:
|
# build:
|
||||||
|
|
||||||
|
echo wasm-pack plugin
|
||||||
|
pwd
|
||||||
|
echo actions: ${PLUGIN_ACTIONS}
|
||||||
|
echo username: ${PLUGIN_USERNAME}
|
||||||
|
echo registry: ${PLUGIN_REGISTRY:-https://registry.npmjs.org/}
|
||||||
|
echo scope: ${PLUGIN_SCOPE}
|
||||||
|
echo folder: ${PLUGIN_FOLDER:-.}
|
||||||
|
echo build_profile: ${PLUGIN_BUILD_PROFILE:-release}
|
||||||
|
echo make: ${PLUGIN_MAKE}
|
||||||
|
|
||||||
set -eu
|
set -eu
|
||||||
|
|
||||||
cd ${PLUGIN_FOLDER:-.}
|
cd ${PLUGIN_FOLDER:-.}
|
||||||
|
|
Loading…
Reference in New Issue