deployphp / action

GitHub Action for Deployer
MIT License
234 stars 50 forks source link

Bug: verbosity level option doesn't work #66

Open vitalykarasik opened 1 year ago

vitalykarasik commented 1 year ago

I tried to increase verbosity level using both "-vv" and "-vvv" options, but the log I still see "php deployer.phar deploy altius-demo --no-interaction --ansi -v " command, and no debug output.

uses: deployphp/action@v1
        with:
          deployer-version: "6.8.0"
          dep: deploy demo
          private-key: ${{ secrets.SSH_DEPLOY_KEY }}
          ssh-config: ${{ vars.SSH_CONFIG_DEPLOYER }}
          options: |
            branch: $DEPLOY_BRANCH
            keep_releases: 10
            verbosity: -vvv

Upvote & Fund

Fund with Polar

antonmedv commented 1 year ago

Try this:

    dep: deploy demo -vvv
vitalykarasik commented 1 year ago

@antonmedv - many thanks, it works! Does it say I can use all available command options here?

antonmedv commented 1 year ago

Yes