From bd7d5e233bf42de80be99ce55f858c9853a4e065 Mon Sep 17 00:00:00 2001 From: Grigory Efimov Date: Thu, 27 Jun 2024 19:05:51 -0300 Subject: [PATCH 1/2] .github/workflows/push-docker-image.yml refactoring dockerfile-cmd --- .github/workflows/push-docker-image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push-docker-image.yml b/.github/workflows/push-docker-image.yml index 9aebb40..90f9bb3 100644 --- a/.github/workflows/push-docker-image.yml +++ b/.github/workflows/push-docker-image.yml @@ -10,4 +10,4 @@ jobs: secrets: inherit # pass all secrets with: release: ${{ github.event.release.tag_name }} - dockerfile-cmd: /bin/any-sync-node -c /etc/any-sync-node/config.yml + dockerfile-cmd: ["/bin/any-sync-node", "-c", "/etc/any-sync-node/config.yml"] From 8195093c9b9bf2e5a6ae5660fc3a522f9b11fcf8 Mon Sep 17 00:00:00 2001 From: Grigory Efimov Date: Thu, 27 Jun 2024 19:12:14 -0300 Subject: [PATCH 2/2] .github/workflows/push-docker-image.yml fixed --- .github/workflows/push-docker-image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push-docker-image.yml b/.github/workflows/push-docker-image.yml index 90f9bb3..a5ee41c 100644 --- a/.github/workflows/push-docker-image.yml +++ b/.github/workflows/push-docker-image.yml @@ -10,4 +10,4 @@ jobs: secrets: inherit # pass all secrets with: release: ${{ github.event.release.tag_name }} - dockerfile-cmd: ["/bin/any-sync-node", "-c", "/etc/any-sync-node/config.yml"] + dockerfile-cmd: '["/bin/any-sync-node", "-c", "/etc/any-sync-node/config.yml"]'