Skip to content

Commit

Permalink
x25
Browse files Browse the repository at this point in the history
  • Loading branch information
ljocha committed Apr 8, 2024
1 parent 3a2cb9b commit 208956a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/deploy-common/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ runs:
shell: bash
run: |
install -m 600 -D /dev/null ~/.ssh/id_rsa
echo "::add-mask::${{ inputs.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
echo "${{ inputs.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
echo "${{ inputs.SSH_KNOWN_HOSTS }}" > ~/.ssh/known_hosts
ssh debian@${{ inputs.destination }} hostname -f
Expand All @@ -35,7 +35,7 @@ runs:

- name: Vault password
shell: bash
run: echo "::add-mask::${{ inputs.VAULT_PASSWORD }}" >.vault-password.txt
run: echo "${{ inputs.VAULT_PASSWORD }}" >.vault-password.txt

- name: Hosts file
shell: bash
Expand Down

0 comments on commit 208956a

Please sign in to comment.