fix(boi): runner sequence (#139) #42
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: deploy | |
on: | |
push: | |
branches: | |
- 'main' | |
paths: | |
- 'manifest/**' | |
- 'packages/**' | |
- 'presets/**' | |
- 'protocol/**' | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install SSH key | |
uses: shimataro/ssh-key-action@v2 | |
with: | |
key: ${{ secrets.VRN_REMOTE_SERVER_SSH_PRIVATE_KEY }} | |
name: vrn_rsa | |
known_hosts: ${{ secrets.VRN_REMOTE_SERVER_SSH_KNOWN_HOSTS }} | |
config: ${{ secrets.VRN_REMOTE_SERVER_SSH_CONFIG }} | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
- name: Setup Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm i | |
# - name: Testing | |
# run: npm run test | |
- name: Run compile and build packages | |
run: pnpm build | |
- name: Generate manifest and pack boilerplate | |
run: pnpm gen:manifest:http | |
- name: Deploy | |
run: pnpm deploy:ci | |
env: | |
BOILERPLATE_DEPLOY_DIR: ${{ secrets.BOILERPLATE_DEPLOY_DIR }} |