File tree 2 files changed +23
-0
lines changed
2 files changed +23
-0
lines changed 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