Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build & Push to ECR
name: imastodon Build & Push to ECR

on:
push:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Deploy
name: imastodon Deploy

on:
workflow_dispatch:
Expand All @@ -10,22 +10,22 @@ on:
jobs:
pre-deploy-migrate:
name: Pre-deploy migration
uses: ./.github/workflows/ecspresso-run-db-migrate.yml
uses: ./.github/workflows/imastodon-ecspresso-run-db-migrate.yml
with:
image_tag: ${{ inputs.image_tag }}
skip_post_deployment_migrations: true

deploy-sidekiq:
name: Deploy sidekiq
needs: pre-deploy-migrate
uses: ./.github/workflows/ecspresso-deploy-sidekiq.yml
uses: ./.github/workflows/imastodon-ecspresso-deploy-sidekiq.yml
with:
image_tag: ${{ inputs.image_tag }}

deploy-webapp:
name: Deploy webapp
needs: pre-deploy-migrate
uses: ./.github/workflows/ecspresso-deploy-webapp.yml
uses: ./.github/workflows/imastodon-ecspresso-deploy-webapp.yml
with:
image_tag: ${{ inputs.image_tag }}

Expand All @@ -34,7 +34,7 @@ jobs:
needs:
- deploy-sidekiq
- deploy-webapp
uses: ./.github/workflows/ecspresso-run-db-migrate.yml
uses: ./.github/workflows/imastodon-ecspresso-run-db-migrate.yml
with:
image_tag: ${{ inputs.image_tag }}
skip_post_deployment_migrations: false
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: ecspresso deploy sidekiq
name: imastodon ecspresso deploy sidekiq

on:
workflow_call:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: ecspresso deploy webapp
name: imastodon ecspresso deploy webapp

on:
workflow_call:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: ecspresso run db:migrate
name: imastodon ecspresso run db:migrate

on:
workflow_call:
Expand Down
Loading