Merge pull request #60 from https-quantumblockchainai-atlassian-net/d… #2177
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 Edgio | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
deploy-to-layer0: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 14 | |
registry-url: https://npm-proxy.fury.io/moovweb/ | |
- run: npm ci | |
- run: npm run edgio:deploy -- --token=$LAYER0_DEPLOY_TOKEN | |
env: | |
LAYER0_DEPLOY_TOKEN: ${{secrets.LAYER0_DEPLOY_TOKEN}} |