From b8d15a97c726a76d8168af5540c3ab3e2cb92123 Mon Sep 17 00:00:00 2001 From: etwodev Date: Sun, 5 Oct 2025 19:10:04 +0100 Subject: [PATCH] chore: update main.go --- action.yml | 22 +++++++++++----------- main.go | 1 - 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/action.yml b/action.yml index 87bfe75..eec67c1 100644 --- a/action.yml +++ b/action.yml @@ -46,25 +46,25 @@ runs: using: "docker" image: "Dockerfile" args: - - "--url" + - "-url" - "${{ inputs.portainer-url }}" - - "--token" + - "-token" - "${{ inputs.portainer-token }}" - - "--endpoint" + - "-endpoint" - "${{ inputs.portainer-endpoint }}" - - "--stack" + - "-stack" - "${{ inputs.stack-name }}" - - "--repo-url" + - "-repo-url" - "${{ inputs.repo-url }}" - - "--repo-ref" + - "-repo-ref" - "${{ inputs.repo-ref }}" - - "--compose" + - "-compose" - "${{ inputs.repo-compose-file }}" - - "--repo-user" + - "-repo-user" - "${{ inputs.repo-username }}" - - "--repo-pass" + - "-repo-pass" - "${{ inputs.repo-password }}" - - "--insecure" + - "-insecure" - "${{ inputs.tls-skip-verify }}" - - "--env" + - "-env" - "${{ inputs.env-data }}" diff --git a/main.go b/main.go index 4d11cf4..f002845 100644 --- a/main.go +++ b/main.go @@ -336,5 +336,4 @@ func main() { } os.Exit(0) - }