Merge pull request #485 from ithfay/master #689
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 to ping.pub | |
on: | |
push: | |
branches: [ master ] | |
# pull_request: | |
# branches: [ master ] | |
jobs: | |
deploy: | |
name: Ping deploy | |
runs-on: mainnet | |
steps: | |
- name: Environment | |
run: export NODE_OPTIONS="--max_old_space_size=4096" | |
- name: Git Checkout Latest | |
uses: actions/checkout@v3 | |
- name: Install | |
run: yarn install --ignore-engines | |
- name: Build | |
run: yarn build | |
- name: Deploy | |
run: cp -rf ./dist/* /var/www/html/ |