Skip to content

Commit

Permalink
fix typo ref -> ref_name
Browse files Browse the repository at this point in the history
  • Loading branch information
p-wall committed Jul 8, 2024
1 parent f5cfbbb commit b1abe7b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,17 +71,17 @@ jobs:
RUBY_VERSION=${{ steps.ruby-version.outputs.ruby_version }}
REVISION=${{ github.sha }}
context: .
push: ${{ github.ref == github.event.repository.default_branch }}
push: ${{ github.ref_name == github.event.repository.default_branch }}
tags: |
${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com/pipeline:sha-${{ github.sha }}
deploy:
if: github.ref == github.event.repository.default_branch
if: github.ref_name == github.event.repository.default_branch
needs:
- test
- prepare-app-image
concurrency:
group: deploy-to-production-${{ github.ref }}
group: deploy-to-production
cancel-in-progress: false
runs-on: ubuntu-latest

Expand Down

0 comments on commit b1abe7b

Please sign in to comment.