Github Actions deploy.yml file for CI4 project, asking for password and getting failed
name: Deploy to Server on: push: branches: – master jobs: deploy: runs-on: ubuntu-latest steps: – name: Checkout code uses: actions/checkout@v3 – name: Setup SSH run: | mkdir -p ~/.ssh echo “${{ secrets.SSH_PRIVATE_KEY }}” > ~/.ssh/id_rsa chmod 600 ~/.ssh/id_rsa ssh-keyscan github.com >> ~/.ssh/known_hosts – name: Sync files to server run: | rsync -avz –delete-after -e “ssh […]
Github Actions deploy.yml file for CI4 project, asking for password and getting failed
name: Deploy to Server on: push: branches: – master jobs: deploy: runs-on: ubuntu-latest steps: – name: Checkout code uses: actions/checkout@v3 – name: Setup SSH run: | mkdir -p ~/.ssh echo “${{ secrets.SSH_PRIVATE_KEY }}” > ~/.ssh/id_rsa chmod 600 ~/.ssh/id_rsa ssh-keyscan github.com >> ~/.ssh/known_hosts – name: Sync files to server run: | rsync -avz –delete-after -e “ssh […]
Github Actions deploy.yml file for CI4 project, asking for password and getting failed
name: Deploy to Server on: push: branches: – master jobs: deploy: runs-on: ubuntu-latest steps: – name: Checkout code uses: actions/checkout@v3 – name: Setup SSH run: | mkdir -p ~/.ssh echo “${{ secrets.SSH_PRIVATE_KEY }}” > ~/.ssh/id_rsa chmod 600 ~/.ssh/id_rsa ssh-keyscan github.com >> ~/.ssh/known_hosts – name: Sync files to server run: | rsync -avz –delete-after -e “ssh […]
Github Actions deploy.yml file for CI4 project, asking for password and getting failed
name: Deploy to Server on: push: branches: – master jobs: deploy: runs-on: ubuntu-latest steps: – name: Checkout code uses: actions/checkout@v3 – name: Setup SSH run: | mkdir -p ~/.ssh echo “${{ secrets.SSH_PRIVATE_KEY }}” > ~/.ssh/id_rsa chmod 600 ~/.ssh/id_rsa ssh-keyscan github.com >> ~/.ssh/known_hosts – name: Sync files to server run: | rsync -avz –delete-after -e “ssh […]
Github Actions deploy.yml file for CI4 project, asking for password and getting failed
name: Deploy to Server on: push: branches: – master jobs: deploy: runs-on: ubuntu-latest steps: – name: Checkout code uses: actions/checkout@v3 – name: Setup SSH run: | mkdir -p ~/.ssh echo “${{ secrets.SSH_PRIVATE_KEY }}” > ~/.ssh/id_rsa chmod 600 ~/.ssh/id_rsa ssh-keyscan github.com >> ~/.ssh/known_hosts – name: Sync files to server run: | rsync -avz –delete-after -e “ssh […]
Github Actions deploy.yml file for CI4 project, asking for password and getting failed
name: Deploy to Server on: push: branches: – master jobs: deploy: runs-on: ubuntu-latest steps: – name: Checkout code uses: actions/checkout@v3 – name: Setup SSH run: | mkdir -p ~/.ssh echo “${{ secrets.SSH_PRIVATE_KEY }}” > ~/.ssh/id_rsa chmod 600 ~/.ssh/id_rsa ssh-keyscan github.com >> ~/.ssh/known_hosts – name: Sync files to server run: | rsync -avz –delete-after -e “ssh […]
Github Actions deploy.yml file for CI4 project, asking for password and getting failed
name: Deploy to Server on: push: branches: – master jobs: deploy: runs-on: ubuntu-latest steps: – name: Checkout code uses: actions/checkout@v3 – name: Setup SSH run: | mkdir -p ~/.ssh echo “${{ secrets.SSH_PRIVATE_KEY }}” > ~/.ssh/id_rsa chmod 600 ~/.ssh/id_rsa ssh-keyscan github.com >> ~/.ssh/known_hosts – name: Sync files to server run: | rsync -avz –delete-after -e “ssh […]
Github Actions deploy.yml file for CI4 project, asking for password and getting failed
name: Deploy to Server on: push: branches: – master jobs: deploy: runs-on: ubuntu-latest steps: – name: Checkout code uses: actions/checkout@v3 – name: Setup SSH run: | mkdir -p ~/.ssh echo “${{ secrets.SSH_PRIVATE_KEY }}” > ~/.ssh/id_rsa chmod 600 ~/.ssh/id_rsa ssh-keyscan github.com >> ~/.ssh/known_hosts – name: Sync files to server run: | rsync -avz –delete-after -e “ssh […]
Github Actions deploy.yml file for CI4 project, asking for password and getting failed
name: Deploy to Server on: push: branches: – master jobs: deploy: runs-on: ubuntu-latest steps: – name: Checkout code uses: actions/checkout@v3 – name: Setup SSH run: | mkdir -p ~/.ssh echo “${{ secrets.SSH_PRIVATE_KEY }}” > ~/.ssh/id_rsa chmod 600 ~/.ssh/id_rsa ssh-keyscan github.com >> ~/.ssh/known_hosts – name: Sync files to server run: | rsync -avz –delete-after -e “ssh […]
How can I prevent Github Actions yaml file to be deployed?
I have a .github/workflows/deploy.yaml
file for working Github Action. Now I need to delete that action but I don’t want to delete yaml file in case I need that.