From a7af879e9aefb3db8ec486e1f2a5ef0c8b71e05d Mon Sep 17 00:00:00 2001 From: hyochan Date: Sat, 23 Jul 2022 19:17:17 +0900 Subject: [PATCH] hotfix: change sed dest filenames --- .github/workflows/deploy.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 19d3683..3996e87 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -18,11 +18,11 @@ jobs: - name: Sed build files run: | - sed -i "s/.\/const/.\/const.js/gi" root.js - sed -i "s/.\/functions/.\/functions.js/gi" root.js - sed -i "s/.\/cb/.\/cb.js/gi" root.js - sed -i "s/.\/const/.\/const.js/gi" cb.js - sed -i "s/.\/functions/.\/functions.js/gi" cb.js + sed -i "s/.\/const/.\/const.js/gi" lib/bin/root.js + sed -i "s/.\/functions/.\/functions.js/gi" lib/bin/root.js + sed -i "s/.\/cb/.\/cb.js/gi" lib/bin/root.js + sed -i "s/.\/const/.\/const.js/gi" lib/bin/cb.js + sed -i "s/.\/functions/.\/functions.js/gi" lib/bin/cb.js - run: npm publish env: