Skip to content

Commit

Permalink
Fix same names
Browse files Browse the repository at this point in the history
  • Loading branch information
mraerino committed Apr 28, 2024
1 parent 528f869 commit 638430c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and publish Container Image
name: Build

on:
push:
Expand All @@ -10,6 +10,7 @@ env:

jobs:
build-and-push-image:
name: Docker Image
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down Expand Up @@ -60,11 +61,11 @@ jobs:
cache-to: type=gha,mode=max

deploy:
name: Deploy backend
name: Deploy Backend
runs-on: ubuntu-latest
concurrency: deploy-group # ensure only one action runs at a time
needs: build-and-push-image
if: github.event == 'push' && github.ref == 'refs/head/main'
if: github.ref_type == 'branch' && github.ref_name == 'main'
steps:
- uses: actions/checkout@v4
- uses: superfly/flyctl-actions/setup-flyctl@1.5
Expand Down

0 comments on commit 638430c

Please sign in to comment.