diff --git a/.github/workflows/sandbox_build_and_deploy.yml b/.github/workflows/sandbox_build_and_deploy.yml index 4cb2e56..e26035e 100644 --- a/.github/workflows/sandbox_build_and_deploy.yml +++ b/.github/workflows/sandbox_build_and_deploy.yml @@ -48,7 +48,7 @@ jobs: - name: Deploy docker compose to a pre-configured server on first host uses: TapTap21/docker-remote-deployment-action@v1.1 with: - remote_docker_host: ${{ secrets.SANDBOX_IP }} + remote_docker_host: ${{ secrets.SANDBOX_HOST }} ssh_private_key: ${{ secrets.SSH_PRIV_KEY }} ssh_public_key: ${{ secrets.SSH_PUB_KEY }} stack_file_name: ${{ env.COMPOSE_FILE_NAME }} diff --git a/.github/workflows/staging_build_and_deploy.yml b/.github/workflows/staging_build_and_deploy.yml index 9cad276..fdd003c 100644 --- a/.github/workflows/staging_build_and_deploy.yml +++ b/.github/workflows/staging_build_and_deploy.yml @@ -46,7 +46,7 @@ jobs: - name: Deploy docker compose to a pre-configured server on first host uses: TapTap21/docker-remote-deployment-action@v1.1 with: - remote_docker_host: ${{ secrets.STAGING_IP }} + remote_docker_host: ${{ secrets.STAGING_HOST }} ssh_private_key: ${{ secrets.SSH_PRIV_KEY }} ssh_public_key: ${{ secrets.SSH_PUB_KEY }} stack_file_name: ${{ env.COMPOSE_FILE_NAME }}