feat: Update data #115
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
environment: Live | |
steps: | |
- uses: actions/checkout@v3 | |
- name: SFTP Deploy | |
env: | |
SSH_HOST: ${{ secrets.SSH_HOST }} | |
SSH_PORT: ${{ secrets.SSH_PORT }} | |
SSH_USERNAME: ${{ secrets.SSH_USERNAME }} | |
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} | |
TARGET_PATH: ${{ secrets.TARGET_PATH }} | |
run: | | |
mkdir public public/img public/data | |
cp *.html *.css *.js public | |
cp roles-pantheons-spritesheet.png 4bfba3d77789a9ec16129032096c7f12.woff public | |
cp -r img/* public/img | |
cp -r data/*.json public/data | |
eval $(ssh-agent -s) | |
echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -k -t 10 - | |
echo "put -r ./public/* $TARGET_PATH" | sftp -b - -P $SSH_PORT -o StrictHostKeyChecking=no $SSH_USERNAME@$SSH_HOST | |
ssh-add -D |