name: Deploy Frontend on: push: branches: [main] jobs: deploy: runs-on: ubuntu-latest defaults: run: shell: sh steps: - name: Install SSH client run: | V=$(cut -d'.' -f1-2 /etc/alpine-release) echo "https://linux-mirror.liara.ir/repository/alpine/v$V/main" > /etc/apk/repositories echo "https://linux-mirror.liara.ir/repository/alpine/v$V/community" >> /etc/apk/repositories apk add --no-cache openssh-client - name: Setup SSH key env: SSH_KEY: ${{ secrets.DEPLOY_KEY }} run: | mkdir -p ~/.ssh echo "$SSH_KEY" > ~/.ssh/id_ed25519 chmod 600 ~/.ssh/id_ed25519 ssh-keyscan -p 2234 -H 172.17.0.1 >> ~/.ssh/known_hosts - name: Deploy run: ssh -p 2234 devops@172.17.0.1 'bash /opt/services/parsa/frontend/deploy.sh'