docker-run-action
docker-run-action copied to clipboard
$GITHUB_ENV: ambiguous redirect
- name: Test
uses: addnab/docker-run-action@v3
with:
image: alpine
options: --rm -i -v ${{ github.workspace }}:/app -w=/app
run: |
echo "Start"
echo "DEPLOY_STATE=successful" >> $GITHUB_ENV
gives ambiguous redirect
exception, could workaround this by adding another trailing echo
I've been running into this and have tried working around this and can't seem to figure it out. What do you mean by this being worked around with a "trailing echo". Do you just mean running an additional echo
command in your run
block?
I've been running into this and have tried working around this and can't seem to figure it out. What do you mean by this being worked around with a "trailing echo". Do you just mean running an additional
echo
command in yourrun
block?
Yes