File tree Expand file tree Collapse file tree 5 files changed +48
-0
lines changed
v7-astro-template/.github/workflows
v7-remix-template/.github Expand file tree Collapse file tree 5 files changed +48
-0
lines changed Original file line number Diff line number Diff line change 10
10
steps :
11
11
- uses : actions/checkout@v3
12
12
- uses : actions/setup-node@v3
13
+ with :
14
+ node-version : 18
13
15
- run : if [ -f yarn.lock ]; then yarn install; else npm ci; fi
14
16
- run : if [ -f yarn.lock ]; then yarn edgio:deploy -- --token=$EDGIO_DEPLOY_TOKEN; else npm run edgio:deploy -- --token=$EDGIO_DEPLOY_TOKEN; fi
15
17
env :
Original file line number Diff line number Diff line change
1
+ ** NOTICE TO CONTRIBUTORS**
2
+
3
+ This repository is not actively monitored and any pull requests made to this repository will be closed/ignored.
4
+
5
+ Please submit the pull request to [ edgio-docs/edgio-examples] ( https://github.com/edgio-docs/edgio-examples ) instead.
Original file line number Diff line number Diff line change
1
+ name : Deploy to Edgio
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ push :
6
+
7
+ jobs :
8
+ deploy-to-edgio :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - uses : actions/checkout@v3
12
+ - uses : actions/setup-node@v3
13
+ with :
14
+ node-version : 18
15
+ - run : if [ -f yarn.lock ]; then yarn install; else npm ci; fi
16
+ - run : if [ -f yarn.lock ]; then yarn edgio:deploy -- --token=$EDGIO_DEPLOY_TOKEN; else npm run edgio:deploy -- --token=$EDGIO_DEPLOY_TOKEN; fi
17
+ env :
18
+ EDGIO_DEPLOY_TOKEN : ${{secrets.EDGIO_DEPLOY_TOKEN}}
Original file line number Diff line number Diff line change
1
+ ** NOTICE TO CONTRIBUTORS**
2
+
3
+ This repository is not actively monitored and any pull requests made to this repository will be closed/ignored.
4
+
5
+ Please submit the pull request to [ edgio-docs/edgio-examples] ( https://github.com/edgio-docs/edgio-examples ) instead.
Original file line number Diff line number Diff line change
1
+ name : Deploy to Edgio
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ push :
6
+
7
+ jobs :
8
+ deploy-to-edgio :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - uses : actions/checkout@v3
12
+ - uses : actions/setup-node@v3
13
+ with :
14
+ node-version : 18
15
+ - run : if [ -f yarn.lock ]; then yarn install; else npm ci; fi
16
+ - run : if [ -f yarn.lock ]; then yarn edgio:deploy -- --token=$EDGIO_DEPLOY_TOKEN; else npm run edgio:deploy -- --token=$EDGIO_DEPLOY_TOKEN; fi
17
+ env :
18
+ EDGIO_DEPLOY_TOKEN : ${{secrets.EDGIO_DEPLOY_TOKEN}}
You can’t perform that action at this time.
0 commit comments