From fc816041b57477acf6a29b5eaadce4cbc3ab2938 Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Mon, 2 Mar 2020 16:35:30 +0100 Subject: [PATCH] chore: Fix `just publish` by accepting a version ID. --- .github/workflows/release.yml | 2 +- justfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5662ba3a..b55ebb53 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -89,4 +89,4 @@ jobs: source .env/bin/activate just build-any version=${{ matrix.python }} - just publish -i python${version%.*} + just publish python${version%.*} diff --git a/justfile b/justfile index d3ffbc41..83ac00ea 100644 --- a/justfile +++ b/justfile @@ -71,8 +71,8 @@ benchmark benchmark-filename='': inspect: @python -c "help('wasmer')" -publish: - maturin publish -u wasmer +publish version: + maturin publish -i {{version}} -u wasmer # Local Variables: # mode: makefile