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: main:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- uses: superfly/flyctl-actions@1.0 - uses: superfly/flyctl-actions/setup-flyctl@master
with: { args: deploy } - run: flyctl deploy --local-only
env: env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}

View file

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

View file

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