From 2a846aef79d8a2c2593e35e8fcc6637e11455b57 Mon Sep 17 00:00:00 2001 From: sakebook Date: Mon, 14 Oct 2019 02:41:51 +0900 Subject: [PATCH 1/2] Fix create directory path --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index dd35049..5dd0bc0 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -13,7 +13,7 @@ check_credentials() { copy_credential() { echo "Copy credentials" - mkdir -p .pub-cache + mkdir -p ~/.pub-cache cat < ~/.pub-cache/credentials.json $INPUT_CREDENTIAL EOF From 9645fc7a110f7aecd49512e8799a0f45f3bb8b16 Mon Sep 17 00:00:00 2001 From: sakebook Date: Mon, 14 Oct 2019 02:49:57 +0900 Subject: [PATCH 2/2] Modify test trigger --- .github/workflows/test.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ab9529d..acbd5ec 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,5 +1,8 @@ -on: [push] - +on: + push: + branches: + - 'test/*' + - '!master' jobs: test_job: runs-on: ubuntu-latest