2021-08-20 00:56:07 +00:00
|
|
|
name: Deployment pipeline
|
2021-08-20 00:33:28 +00:00
|
|
|
|
2021-08-20 06:28:34 +00:00
|
|
|
on: [push, pull_request]
|
2021-08-20 00:33:28 +00:00
|
|
|
|
|
|
|
jobs:
|
2021-08-20 06:28:34 +00:00
|
|
|
lint:
|
|
|
|
name: Lint
|
2021-08-27 16:48:24 +00:00
|
|
|
timeout-minutes: 4
|
2021-08-20 06:28:34 +00:00
|
|
|
runs-on: ubuntu-latest
|
2021-09-02 18:50:58 +00:00
|
|
|
env:
|
|
|
|
HUSKY_SKIP_INSTALL: 1
|
2021-08-20 06:28:34 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v2
|
|
|
|
with:
|
2021-10-01 21:06:26 +00:00
|
|
|
node-version: 16
|
2021-08-27 16:48:24 +00:00
|
|
|
- run: npm ci
|
2021-08-20 06:28:34 +00:00
|
|
|
- run: npm run lint
|
|
|
|
|
|
|
|
test:
|
2021-12-04 00:10:13 +00:00
|
|
|
if: false == true
|
2021-08-20 06:28:34 +00:00
|
|
|
name: Test
|
2021-08-27 16:48:24 +00:00
|
|
|
timeout-minutes: 4
|
2021-08-20 06:28:34 +00:00
|
|
|
runs-on: ubuntu-latest
|
2021-09-02 18:50:58 +00:00
|
|
|
env:
|
|
|
|
HUSKY_SKIP_INSTALL: 1
|
2021-08-20 06:28:34 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v2
|
|
|
|
with:
|
2021-10-01 21:06:26 +00:00
|
|
|
node-version: 16
|
2021-08-27 16:48:24 +00:00
|
|
|
- run: npm ci
|
2021-08-20 06:28:34 +00:00
|
|
|
- run: npm test
|
|
|
|
|
|
|
|
build:
|
|
|
|
name: Compile
|
2021-08-27 17:02:27 +00:00
|
|
|
timeout-minutes: 6
|
2021-08-20 06:28:34 +00:00
|
|
|
runs-on: ubuntu-latest
|
2021-09-02 18:50:58 +00:00
|
|
|
env:
|
|
|
|
HUSKY_SKIP_INSTALL: 1
|
2021-08-20 06:28:34 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v2
|
|
|
|
with:
|
2021-10-01 21:06:26 +00:00
|
|
|
node-version: 16
|
2021-08-27 16:48:24 +00:00
|
|
|
- run: npm ci
|
2021-08-20 06:28:34 +00:00
|
|
|
- run: npm run build
|
|
|
|
env:
|
|
|
|
DATOCMS_API_TOKEN: ${{ secrets.DATOCMS_API_TOKEN }}
|
|
|
|
QUIRREL_BASE_URL: doesntmatter.shellphone.app
|
|
|
|
|
|
|
|
deploy_dev:
|
|
|
|
if: github.ref == 'refs/heads/master'
|
|
|
|
needs: [lint, test, build]
|
|
|
|
name: Deploy dev.shellphone.app
|
|
|
|
runs-on: ubuntu-latest
|
2021-09-02 18:50:58 +00:00
|
|
|
env:
|
|
|
|
HUSKY_SKIP_INSTALL: 1
|
2021-08-20 06:28:34 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-08-27 14:32:34 +00:00
|
|
|
- uses: superfly/flyctl-actions@master
|
2021-08-20 06:28:34 +00:00
|
|
|
env:
|
2021-08-27 14:32:34 +00:00
|
|
|
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
|
|
|
|
with:
|
2021-08-28 23:13:18 +00:00
|
|
|
args: "deploy -c ./fly.dev.toml --build-arg PANELBEAR_SITE_ID=${{ secrets.PANELBEAR_SITE_ID_DEV }} --build-arg DATOCMS_API_TOKEN=${{ secrets.DATOCMS_API_TOKEN }}"
|
2021-08-27 21:48:17 +00:00
|
|
|
- uses: appleboy/discord-action@master
|
|
|
|
with:
|
|
|
|
webhook_id: ${{ secrets.DISCORD_WEBHOOK_ID }}
|
|
|
|
webhook_token: ${{ secrets.DISCORD_WEBHOOK_TOKEN }}
|
2021-08-28 20:30:53 +00:00
|
|
|
args: "https://dev.shellphone.app deployed with commit `${{ github.event.head_commit.message }}` (`${{ github.sha }}`) from branch `${{ github.ref }}`"
|
2021-08-20 06:28:34 +00:00
|
|
|
|
|
|
|
deploy_prod:
|
|
|
|
if: github.ref == 'refs/heads/production'
|
|
|
|
needs: [lint, test, build]
|
|
|
|
name: Deploy www.shellphone.app
|
2021-08-20 00:33:28 +00:00
|
|
|
runs-on: ubuntu-latest
|
2021-09-02 18:50:58 +00:00
|
|
|
env:
|
|
|
|
HUSKY_SKIP_INSTALL: 1
|
2021-08-20 00:33:28 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-08-27 14:32:34 +00:00
|
|
|
- uses: superfly/flyctl-actions@master
|
2021-08-20 00:33:28 +00:00
|
|
|
env:
|
2021-08-27 14:32:34 +00:00
|
|
|
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
|
|
|
|
with:
|
2021-08-28 23:13:18 +00:00
|
|
|
args: "deploy -c ./fly.prod.toml --build-arg PANELBEAR_SITE_ID=${{ secrets.PANELBEAR_SITE_ID_PROD }} --build-arg DATOCMS_API_TOKEN=${{ secrets.DATOCMS_API_TOKEN }}"
|
2021-08-27 21:48:17 +00:00
|
|
|
- uses: appleboy/discord-action@master
|
|
|
|
with:
|
|
|
|
webhook_id: ${{ secrets.DISCORD_WEBHOOK_ID }}
|
|
|
|
webhook_token: ${{ secrets.DISCORD_WEBHOOK_TOKEN }}
|
2021-08-28 20:30:53 +00:00
|
|
|
args: "https://www.shellphone.app deployed with commit `${{ github.event.head_commit.message }}` (`${{ github.sha }}`) from branch `${{ github.ref }}`"
|
2021-08-20 06:41:37 +00:00
|
|
|
# TODO: on pull_request, deploy 24hour-long deployment at {commit_short_hash}.shellphone.app, provision db and seed data
|