Skip to content

Bump flyctl in CI from 0.0.518 to 0.2.121 #50

Bump flyctl in CI from 0.0.518 to 0.2.121

Bump flyctl in CI from 0.0.518 to 0.2.121 #50

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- "*"
workflow_dispatch: # for Github Button to trigger workflow
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
packages: write
jobs:
build-and-test:
name: "build and test"
uses: ./.github/workflows/build-and-test.yml
# type-linting:
# name: "type linting"
# uses: ./.github/workflows/type-linting.yml
quality-checks:
name: "quality checks"
uses: ./.github/workflows/quality-checks.yml
build-docker-image:
name: "build docker image"
uses: ./.github/workflows/build-docker-image.yml
deploy-to-fly-io:
if: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
name: "deploy to fly.io"
# needs: [build-and-test, type-linting, quality-checks, build-docker-image]
needs: [build-and-test, quality-checks, build-docker-image]
uses: ./.github/workflows/deploy-to-fly-io.yml
secrets:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}