document promise pool support for iterables #8
This file contains hidden or 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: Production Deployment | |
on: | |
push: | |
branches: | |
- 3.x | |
- 4.x | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
name: Node ${{ matrix.node-version }} | |
steps: | |
- name: Running deployment script on server | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.SUPERCHARGE_DEPLOY_SSH_HOST }} | |
username: ${{ secrets.SUPERCHARGE_DEPLOY_SSH_USER }} | |
port: ${{ secrets.SUPERCHARGE_DEPLOY_SSH_PORT }} | |
key: ${{ secrets.SUPERCHARGE_DEPLOY_SSH_PRIVATE_KEY }} | |
script: /home/launch/scripts/deploy-supercharge-docs.sh |