chore: update main.go

This commit is contained in:
etwodev
2025-10-05 19:10:04 +01:00
parent 493d862ad5
commit b8d15a97c7
2 changed files with 11 additions and 12 deletions

View File

@@ -46,25 +46,25 @@ runs:
using: "docker" using: "docker"
image: "Dockerfile" image: "Dockerfile"
args: args:
- "--url" - "-url"
- "${{ inputs.portainer-url }}" - "${{ inputs.portainer-url }}"
- "--token" - "-token"
- "${{ inputs.portainer-token }}" - "${{ inputs.portainer-token }}"
- "--endpoint" - "-endpoint"
- "${{ inputs.portainer-endpoint }}" - "${{ inputs.portainer-endpoint }}"
- "--stack" - "-stack"
- "${{ inputs.stack-name }}" - "${{ inputs.stack-name }}"
- "--repo-url" - "-repo-url"
- "${{ inputs.repo-url }}" - "${{ inputs.repo-url }}"
- "--repo-ref" - "-repo-ref"
- "${{ inputs.repo-ref }}" - "${{ inputs.repo-ref }}"
- "--compose" - "-compose"
- "${{ inputs.repo-compose-file }}" - "${{ inputs.repo-compose-file }}"
- "--repo-user" - "-repo-user"
- "${{ inputs.repo-username }}" - "${{ inputs.repo-username }}"
- "--repo-pass" - "-repo-pass"
- "${{ inputs.repo-password }}" - "${{ inputs.repo-password }}"
- "--insecure" - "-insecure"
- "${{ inputs.tls-skip-verify }}" - "${{ inputs.tls-skip-verify }}"
- "--env" - "-env"
- "${{ inputs.env-data }}" - "${{ inputs.env-data }}"

View File

@@ -336,5 +336,4 @@ func main() {
} }
os.Exit(0) os.Exit(0)
} }