🪂 Fly #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🪂 Fly | |
on: | |
# github.com/serverless-dns/blocklists/blob/6021f80f/.github/workflows/createUploadBlocklistFilter.yml#L4-L6 | |
schedule: | |
# at 7:53 on 2nd, 9th, 17th, 25th of every month | |
- cron: '53 7 2,9,17,25 * *' | |
push: | |
branches: | |
- "main" | |
tags: | |
- "v*" | |
paths-ignore: | |
- ".github/**" | |
- "!.github/workflows/fly.yml" | |
- ".env.example" | |
- ".eslintrc.cjs" | |
- ".prettierignore" | |
- "wrangler.toml" | |
- "README.md" | |
- "wrangler.toml" | |
- ".vscode/*" | |
- ".husky/*" | |
- ".prettierrc.json" | |
- "LICENSE" | |
- "run" | |
workflow_dispatch: | |
inputs: | |
git-ref: | |
description: "Branch / ref / tag to build" | |
required: false | |
default: "main" | |
deployment-type: | |
description: "Fly app type to deploy to" | |
required: true | |
default: 'dev' | |
type: choice | |
options: | |
- dev | |
- prod | |
- onebox | |
- flytls | |
deployment-strat: | |
description: "Deploy strategy" | |
required: true | |
default: 'rolling' | |
type: choice | |
options: | |
- rolling | |
- immediate | |
- bluegreen | |
- canary | |
builder: | |
description: "App builder type" | |
required: true | |
default: 'remote-only' | |
type: choice | |
options: | |
- remote-only | |
- local-only | |
env: | |
GIT_REF: ${{ github.event.inputs.git-ref || github.ref }} | |
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} | |
# one of immediate, rolling (default), bluegreen, canary | |
FLY_DEPLOY_STRAT: ${{ github.event.inputs.deployment-strat }} | |
# local-only, remote-only (default) | |
FLY_BUILDER_TYPE: ${{ github.event.inputs.builder }} | |
# default fly app to deploy to (typically, dev) | |
FLY_APP: "rdns-dev" | |
FLY_TLS_APP: "rdns-b1" | |
FLY_PROD_ONEBOX_APP: "rdns" | |
FLY_PROD_APP: "udns" | |
FLY_CFG: "fly.toml" | |
FLY_TLS_CFG: "fly.tls.toml" | |
FLY_DEPLOY_WAIT_SEC: "300" | |
jobs: | |
deploy: | |
name: 🚀 Deploy app | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🚚 Checkout | |
uses: actions/[email protected] | |
with: | |
ref: ${{ env.GIT_REF }} | |
fetch-depth: 0 | |
- name: 🏗 Setup env vars | |
run: | | |
echo "GIT_HEAD=$(git rev-parse HEAD)" >> $GITHUB_ENV | |
echo "FLY_TOML=${FLY_CFG}" >> $GITHUB_ENV | |
echo "FLY_DEPLOY_STRAT=${FLY_DEPLOY_STRAT:-rolling}" >> $GITHUB_ENV | |
echo "FLY_BUILDER_TYPE=${FLY_BUILDER_TYPE:-remote-only}" >> $GITHUB_ENV | |
shell: bash | |
- name: 🔐👨🚒 FlyTLS via dispatch? | |
if: ${{ github.event_name == 'workflow_dispatch' && | |
github.event.inputs.deployment-type == 'flytls' }} | |
run: | | |
echo "FLY_APP=${FLY_TLS_APP}" >> $GITHUB_ENV | |
echo "FLY_TOML=${FLY_TLS_CFG}" >> $GITHUB_ENV | |
echo "::notice::Deploying FLYTLS / ${GIT_REF} @ ${COMMIT_SHA}" | |
shell: bash | |
env: | |
COMMIT_SHA: ${{ github.sha }} | |
- name: 🚨👨🚒 Prod via dispatch? | |
if: ${{ github.event_name == 'workflow_dispatch' && | |
github.event.inputs.deployment-type == 'prod' }} | |
run: | | |
echo "FLY_APP=${FLY_PROD_APP}" >> $GITHUB_ENV | |
echo "::notice::Deploying PROD / ${GIT_REF} @ ${COMMIT_SHA}" | |
shell: bash | |
env: | |
COMMIT_SHA: ${{ github.sha }} | |
- name: 🚨🛺 Prod via tag? | |
# docs.github.com/en/actions/learn-github-actions/contexts#github-context | |
if: ${{ github.event_name != 'workflow_dispatch' && github.ref_type == 'tag' }} | |
run: | | |
echo "FLY_APP=${FLY_PROD_APP}" >> $GITHUB_ENV | |
echo "::notice::Deploying PROD / ${GIT_REF} @ ${COMMIT_SHA}" | |
shell: bash | |
env: | |
COMMIT_SHA: ${{ github.sha }} | |
- name: 🚨🌽 Prod via cron? | |
if: github.event.schedule == '53 7 2,9,17,25 * *' | |
run: | | |
echo "FLY_APP=${FLY_PROD_APP}" >> $GITHUB_ENV | |
echo "::notice::Deploying PROD / ${GIT_REF} @ ${COMMIT_SHA}" | |
shell: bash | |
env: | |
COMMIT_SHA: ${{ github.sha }} | |
- name: 🚜👨🚒 Onebox via dispatch? | |
if: ${{ github.event_name == 'workflow_dispatch' && | |
github.event.inputs.deployment-type == 'onebox' }} | |
run: | | |
echo "FLY_APP=${FLY_PROD_ONEBOX_APP}" >> $GITHUB_ENV | |
echo "::notice::Deploying 1BOX / ${GIT_REF} @ ${COMMIT_SHA}" | |
shell: bash | |
env: | |
COMMIT_SHA: ${{ github.sha }} | |
# experimental: github.com/superfly/flyctl-actions/pull/20 | |
- name: 🏗 Setup flyctl @ latest | |
uses: superfly/flyctl-actions/setup-flyctl@master | |
with: | |
version: latest | |
- name: 🚢 Ship | |
run: "flyctl deploy | |
--${{ env.FLY_BUILDER_TYPE }} | |
--image-label ${{ env.GIT_HEAD }} | |
--config ${{ env.FLY_TOML }} | |
--strategy ${{ env.FLY_DEPLOY_STRAT }} | |
--wait-timeout ${{ env.FLY_DEPLOY_WAIT_SEC }} | |
--auto-confirm | |
--no-cache | |
--verbose | |
" | |
- name: 📕 Registry | |
if: success() | |
run: | | |
echo "::notice::Image @ registry.fly.io/${{ env.FLY_APP }}:${{ env.GIT_HEAD }}" | |
shell: bash |