From 759a477f31c67af5380aa6dd1665366b68050584 Mon Sep 17 00:00:00 2001 From: Max Schmidt Date: Sat, 13 May 2023 17:40:15 +0200 Subject: [PATCH] Refactor SSH credentials in astro.yml workflow --- .github/workflows/astro.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/astro.yml b/.github/workflows/astro.yml index b39d78b..182c8cf 100644 --- a/.github/workflows/astro.yml +++ b/.github/workflows/astro.yml @@ -11,12 +11,11 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v2 - - name: Execute remote SSH commands uses: appleboy/ssh-action@master with: - host: ${{ secrets.REMOTE_HOST }} - username: ${{ secrets.REMOTE_USER }} - key: ${{ secrets.REMOTE_SSH_KEY }} + host: ${{ secrets.HOST }} + username: ${{ secrets.USER }} + key: ${{ secrets.KEY }} script: | mkdir hallo