You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I have been having issue today with this error Command failed: ssh-add -. I have been using this action for long time and never had a problem, could you help me debug what's wrong?
Here my workflow file:
name: Test Registry packaceon:
push:
branches:
- masterrepository_dispatch:
jobs:
publish:
runs-on: ubuntu-latestname: Publish on the serversteps:
- name: Check out the repouses: actions/checkout@v2.3.4
- name: Login to GitHub Packages Docker Registryuses: docker/login-action@v1with:
registry: docker.pkg.github.comusername: ${{ github.actor }}password: ${{ secrets.GITHUB_TOKEN }}
- name: Set SSH key for remote hostuses: webfactory/ssh-agent@v0.4.1with:
ssh-private-key: ${{ secrets.DO_SSH_KEY }}
- name: Create a docker context for remote machinerun: docker context create digital_ocean --docker="host=${{secrets.DO_HOST}}"
- name: Launch new configurationrun: docker-compose --context digital_ocean -f docker-compose.prod.yml up -d --build --force-recreate
- name: Logout from dockerrun: docker logout
And here the error I got.
The text was updated successfully, but these errors were encountered:
Hi, I have been having issue today with this error
Command failed: ssh-add -
. I have been using this action for long time and never had a problem, could you help me debug what's wrong?Here my workflow file:
And here the error I got.
The text was updated successfully, but these errors were encountered: