More changes
Some checks are pending
Build and Push Docker Image / build-and-push (push) Blocked by required conditions
Deploy Project / deploy (push) Blocked by required conditions
Testing / test (1.23.x, ubuntu-latest) (push) Successful in 51s

This commit is contained in:
2025-02-11 17:40:16 -05:00
parent 8039badd88
commit 78d0e72c2c
2 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@ on:
jobs:
build-and-push:
runs-on: ubuntu-latest
# needs: test
needs: test
# if: startsWith(github.ref, 'refs/tags')
steps:

View File

@ -15,8 +15,8 @@ on:
jobs:
deploy:
runs-on: ubuntu-latest
needs: build-and-push
steps:
- uses: actions/checkout@v3
- name: Setup SSH
@ -26,7 +26,7 @@ jobs:
eval `ssh-agent -s`
mkdir -p /home/runner/.ssh/
touch /home/runner/.ssh/id_rsa
echo -e "${{secrets.SSH_KEY}}" > /home/runner/.ssh/id_rsa
echo "${{secrets.SSH_KEY}}" | tr -d '\r' > /home/runner/.ssh/id_rsa
chmod 700 /home/runner/.ssh/id_rsa
ls -la /home/runner/.ssh/
ssh-keyscan -t rsa,dsa,ecdsa,ed25519 ${{secrets.SSH_HOST}} >> /home/runner/.ssh/known_hosts