Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update deploy_to_edgio.md #582

Merged
merged 3 commits into from Nov 11, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/pages/guides/deploy_to_edgio.md
Expand Up @@ -45,18 +45,18 @@ Lastly, create a GitHub workflow file called `edgio.yml`. This will be triggered
name: Deploy to {{ PRODUCT }}

on:
push:
workflow_dispatch:

jobs:
deploy-to-edgio:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14
registry-url: https://npm-proxy.fury.io/moovweb/
- run: npm ci
- run: npm install
rishi-raj-jain marked this conversation as resolved.
Show resolved Hide resolved
- run: npm run deploy -- --token=$EDGIO_DEPLOY_TOKEN
env:
EDGIO_DEPLOY_TOKEN: ${{secrets.EDGIO_DEPLOY_TOKEN}}
Expand Down