Giter VIP home page Giter VIP logo

Comments (14)

antonmedv avatar antonmedv commented on June 14, 2024 2

Yes, looks like there can be a better solution with correct splitting in js code. Will implement it.

from action.

antonmedv avatar antonmedv commented on June 14, 2024 1

This is strange. Will fix it.

from action.

jonnitto avatar jonnitto commented on June 14, 2024 1

If you made the commit, I can make a test against @master

from action.

jonnitto avatar jonnitto commented on June 14, 2024 1

Yeah, it works now as expected, thank you a lot 🎉

from action.

antonmedv avatar antonmedv commented on June 14, 2024

Difficult to tell what is wrong. Maybe it's some error with calling dep from nodejs:
https://github.com/deployphp/action/blob/master/index.js#L48

Also, please var_dump $argv from deploy.php file, lets print and see what the actual command is.

from action.

jonnitto avatar jonnitto commented on June 14, 2024

I think the main problem, is that the parameter contains spaces: http-basic.domain.tld user password. I wrote the task who uses this input to use URL decode so that I'm able to write http-basic.domain.tld+user+password. With this, it works. But now I can't (or at least I don't know how) replace the spaces with an + in the secret. (I need the secret also in another place with the spaces)

from action.

jonnitto avatar jonnitto commented on June 14, 2024

What do you mean with

Also, please var_dump $argv from deploy.php file, lets print and see what the actual command is.

Do you have a code example?

from action.

antonmedv avatar antonmedv commented on June 14, 2024

var_dump($argv);

from action.

jonnitto avatar jonnitto commented on June 14, 2024

This is the output:

array(7) {
  [0] => string "bin/dep"
  [1] => string "deploy"
  [2] => string "staging"
  [3] => string "--composer_auth"
  [4] => string "'domain.tld"
  [5] => string "user"
  [6] => string"password'"
}

But it should be

array(7) {
  [0] => string "bin/dep"
  [1] => string "deploy"
  [2] => string "staging"
  [3] => string "--composer_auth"
  [4] => string "domain.tld user password"
}

This is what I get if I run the command dep deploy staging --composer_auth "domain.tld user password" in the CLI manually

from action.

jonnitto avatar jonnitto commented on June 14, 2024

In the meantime, I was able to able to change the secret dynamically like that:

jobs:
  deploy:
    name: Deploy
    runs-on: ubuntu-latest
    env:
      composer_auth: ${{ secrets.COMPOSER_AUTH }}
    steps:
      - name: Set environment variables
        run: |
          echo "composer_auth_deployer=${composer_auth//' '/'+'}" >> $GITHUB_ENV
      # Do all the checkout, building, etc...
      - name: Deploy website
        uses: deployphp/[email protected]
        with:
          private-key: ${{ secrets.SSH_PRIVATE_KEY }}
          known-hosts: ${{ secrets.SSH_KNOWN_HOSTS }}
          dep: deploy ${{ env.stage }} --composer_auth ${{ env.composer_auth_deployer }}

and in the PHP:

if (input()->hasOption('composer_auth')) {
    $config = input()->getOption('composer_auth');
    if ($config) {
        cd('{{release_path}}');
        run('{{bin/composer}} config --auth ' . urldecode($config));
    }
}

But of course, it would be much nicer if I could use composer_auth directly.

from action.

antonmedv avatar antonmedv commented on June 14, 2024

Released v1.0.6. Please test it.

from action.

jonnitto avatar jonnitto commented on June 14, 2024

With 1.0.6 I'll following error:

internal/modules/cjs/loader.js:800
    throw err;
    ^

Error: Cannot find module 'argv-split'
Require stack:
- /home/runner/work/_actions/deployphp/action/v1.0.6/index.js
    at Function.Module._resolveFilename (internal/modules/cjs/loader.js:797:15)
    at Function.Module._load (internal/modules/cjs/loader.js:690:27)
    at Module.require (internal/modules/cjs/loader.js:852:19)
    at require (internal/modules/cjs/helpers.js:74:18)
    at Object.<anonymous> (/home/runner/work/_actions/deployphp/action/v1.0.6/index.js:4:15)
    at Module._compile (internal/modules/cjs/loader.js:959:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:995:10)
    at Module.load (internal/modules/cjs/loader.js:815:32)
    at Function.Module._load (internal/modules/cjs/loader.js:727:14)
    at Function.Module.runMain (internal/modules/cjs/loader.js:1047:10) {
  code: 'MODULE_NOT_FOUND',
  requireStack: [ '/home/runner/work/_actions/deployphp/action/v1.0.6/index.js' ]
}

from action.

antonmedv avatar antonmedv commented on June 14, 2024

Release a fix in v1.0.7

from action.

antonmedv avatar antonmedv commented on June 14, 2024

Is it fixed?

from action.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.