Adding deploy steps
Some checks failed
Build homebridge-hue-chase / Version (push) Successful in 8s
Build homebridge-hue-chase / Build (push) Successful in 13s
Build homebridge-hue-chase / deploy (push) Failing after 1s
continuous-integration/drone/push Build is passing
Build homebridge-hue-chase / Publish Latest (push) Failing after 9s
Some checks failed
Build homebridge-hue-chase / Version (push) Successful in 8s
Build homebridge-hue-chase / Build (push) Successful in 13s
Build homebridge-hue-chase / deploy (push) Failing after 1s
continuous-integration/drone/push Build is passing
Build homebridge-hue-chase / Publish Latest (push) Failing after 9s
This commit is contained in:
parent
3f5797c70f
commit
569c2316c2
@ -45,5 +45,29 @@ jobs:
|
|||||||
run: npm config set -- '//gitea.watsonlabs.net/api/packages/watsonb8/npm/:_authToken' "$NPM_TOKEN"
|
run: npm config set -- '//gitea.watsonlabs.net/api/packages/watsonb8/npm/:_authToken' "$NPM_TOKEN"
|
||||||
- run: npm publish
|
- run: npm publish
|
||||||
|
|
||||||
# deploy:
|
deploy:
|
||||||
# name: Deploy Package
|
runs-on: internal
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up SSH key
|
||||||
|
run: |
|
||||||
|
env
|
||||||
|
mkdir -p ~/.ssh
|
||||||
|
echo "${{ secrets.HOMEBRIDGE_SSH_KEY }}" > ~/.ssh/id_rsa
|
||||||
|
chmod 600 ~/.ssh/id_rsa
|
||||||
|
ssh-keyscan -p 22 homebridge.me >> ~/.ssh/known_hosts
|
||||||
|
sudo apt-get install sshpass
|
||||||
|
|
||||||
|
- name: Remove old Package
|
||||||
|
run: |
|
||||||
|
sshpass -p '${{ secrets.HOMEBRIDGE_PASSWORD }}' ssh -v -o StrictHostKeyChecking=no ${{ secrets.HOMEBRIDGE_USER }}@${{ secrets.HOMEBRIDGE_HOST }} <<'ENDSSH'
|
||||||
|
rm -r /home/$SSH_USER/.npm-global/lib/node_modules/@watsonb8/homebridge-hue-chase
|
||||||
|
ENDSSH
|
||||||
|
- name: Deploy
|
||||||
|
run: |
|
||||||
|
sshpass -p '${{ secrets.HOMEBRIDGE_PASSWORD }}' ssh -v -o StrictHostKeyChecking=no ${{ secrets.HOMEBRIDGE_USER }}@${{ secrets.HOMEBRIDGE_HOST }} <<'ENDSSH'
|
||||||
|
npm install -g @watsonb8/homebridge-hue-chase
|
||||||
|
ENDSSH
|
||||||
|
|
Loading…
Reference in New Issue
Block a user