diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2025-01-17 14:00:51 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2025-01-17 14:00:51 -0500 |
commit | 204aa7650ebf851f11d48ade0c846079aa88c966 (patch) | |
tree | f8dac57329d863a6dc2b5555f69127021a8f5fbb /.github | |
parent | 372a172039fece03ef3e89439ea1b73de8f5f263 (diff) | |
download | ghasandbox-204aa7650ebf851f11d48ade0c846079aa88c966.tar.gz |
OK
Diffstat (limited to '.github')
-rw-r--r-- | .github/actions/sshfs/action.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/actions/sshfs/action.yml b/.github/actions/sshfs/action.yml index aeff56b..f3cf957 100644 --- a/.github/actions/sshfs/action.yml +++ b/.github/actions/sshfs/action.yml @@ -29,10 +29,6 @@ inputs: required: false default: "" -env: - SSHFS_USER: ${{ inputs.user }} - SSHFS_PASS: ${{ inputs.password }} - runs: using: "composite" steps: @@ -40,8 +36,12 @@ runs: run: | echo "::add-mask::$SSHFS_USER" echo "::add-mask::$SSHFS_PASS" + env: + SSHFS_USER: ${{ inputs.user }} + SSHFS_PASS: ${{ inputs.password }} shell: bash + - name: Install SSHFS run: | sudo apt update |