Skip to content

mail service

mail service #79

Workflow file for this run

name: Build and deploy
on:
push:
branches: ["migration-to-golang", "dev", "main"]
env:
FLY_API_TOKEN: ${{ secrets. FLY_API_TOKEN }}
jobs:
build-mcmamina:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: 👀 Read app name
uses: SebRollen/toml-action@v1.0.2
id: app_name
with:
file: fly.toml
field: app
- uses: superfly/flyctl-actions/setup-flyctl@master
- name: 🚀 Deploy Staging
if: ${{ github.ref == 'refs/heads/dev' }}
run: flyctl deploy --remote-only --region waw --build-arg COMMIT_SHA=${{ github.sha }} --app ${{ steps.app_name.outputs.value }}-staging
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
- name: 🚀 Deploy Production
if: ${{ github.ref == 'refs/heads/main' }}
run: flyctl deploy --remote-only --region waw --build-arg COMMIT_SHA=${{ github.sha }} --app ${{ steps.app_name.outputs.value }}
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}