1
0
Fork 0
mirror of https://github.com/kou029w/http-echo.git synced 2025-01-31 14:18:00 +00:00

Compare commits

...

5 commits

Author SHA1 Message Date
7ff9463444 with fetch-depth: "0" 2022-09-01 18:43:47 +09:00
7f8734f65d fix ref 2022-09-01 18:38:01 +09:00
633849fad6 fixed deploy-fly workflow 2022-09-01 18:33:22 +09:00
6a39a5f094 drop node v12 2022-09-01 18:31:02 +09:00
52e431a6a0 fix sync-glitch workflow 2022-09-01 18:30:49 +09:00
3 changed files with 11 additions and 11 deletions

View file

@ -4,8 +4,8 @@ jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: superfly/flyctl-actions@1.0
with: { args: deploy }
- uses: actions/checkout@v3
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy --local-only
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}

View file

@ -6,8 +6,9 @@ jobs:
main:
runs-on: ubuntu-latest
steps:
- run: npx sync-glitch-cli
env:
GH_REPO: "${{ github.repository }}"
GLITCH_PROJECT_ID: "${{ secrets.GLITCH_PROJECT_ID }}"
GLITCH_TOKEN: "${{ secrets.GLITCH_TOKEN }}"
- uses: actions/checkout@v3
with:
fetch-depth: "0"
- run: |
git remote add glitch "${{ secrets.GLITCH_GIT_URL }}"
git push glitch origin/master

View file

@ -16,10 +16,9 @@
"passport-http": "latest"
},
"devDependencies": {
"aws-serverless-express": "latest",
"sync-glitch-cli": "latest"
"aws-serverless-express": "latest"
},
"engines": {
"node": ">=12"
"node": ">=14"
}
}