Skip to content

Commit 6e66b92

Browse files
committed
rename
1 parent 99235a6 commit 6e66b92

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

actions/deploy-reflex-site-backend/action.yml renamed to actions/deploy-reflex-backend/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ runs:
4141
# Make it easier to see when environment setup is incorrect
4242
shell: bash
4343
run: |
44-
if [ -z "${{ secrets.ssh-private-key }}" ]; then
44+
if [ -z "${{ inputs.ssh-private-key }}" ]; then
4545
echo "ssh-private-key is not set"
4646
exit 1
4747
fi
@@ -90,7 +90,7 @@ runs:
9090
with:
9191
host: ${{ inputs.vps-ip }}
9292
username: ${{ inputs.ssh-user }}
93-
key: ${{ secrets.ssh-private-key }}
93+
key: ${{ inputs.ssh-private-key }}
9494
port: 22
9595
source: ${{ inputs.dotenv-path }}
9696
target: sites/${{ vars.site-name }}/.env
@@ -102,7 +102,7 @@ runs:
102102
with:
103103
host: ${{ inputs.vps-ip }}
104104
username: ${{ inputs.ssh-user }}
105-
key: ${{ secrets.ssh-private-key }}
105+
key: ${{ inputs.ssh-private-key }}
106106
script: |
107107
chmod 600 sites/${{ vars.site-name }}/.env
108108
@@ -111,7 +111,7 @@ runs:
111111
with:
112112
host: ${{ inputs.vps-ip }}
113113
username: ${{ inputs.ssh-user }}
114-
key: ${{ secrets.ssh-private-key }}
114+
key: ${{ inputs.ssh-private-key }}
115115
script: |
116116
# Log in to GitHub Container Registry
117117
echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u ${{ github.actor }} --password-stdin && \
File renamed without changes.

0 commit comments

Comments
 (0)