Great day!
Thank you very much… heartfelt… for the ineffably magnificent project…
Issue
I am currently getting the following error: https://github.com/php-actions/composer/issues/114 when am trying to use actions php-actions/composer@v6.1.2
:
...
🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0-composite-composer_run.sh] user= workdir=
Exec command '[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0-composite-composer_run.sh]'
Working directory '/workspace/project/main-website'
❌ Failure - Main set -e\nbash <(curl -s https://raw.githubusercontent.com/php-actions/php-build/v2.2.0/php-build.bash) composer\n/var/run/act/actions/php-actions-composer@v6.1.2/composer-action.bash
Question
What might it be? Is it possible to obtain more output (i.e. where would I put strace
manually to get more output during such execution), or is it possible to know exactly why does the next step produce no no output, too?
Workflow File
name: 'Test Workflow'
on:
push:
branches:
- 'test'
jobs:
deploy-job:
name: 'Build'
runs-on: 'ubuntu-latest'
steps:
- name: 'Composer'
# @see https://github.com/marketplace/actions/composer-php-actions#passing-arguments
uses: 'php-actions/composer@v6.1.2'
with:
php_version: '8.3'
- name: 'Node'
run: |
npm i;
npm run build;
Best and kind regards