Skip to content

Commit

Permalink
update readme [no ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
tmshkr committed Dec 24, 2023
1 parent bf18db4 commit 9077a9a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Generate source bundle
run: echo ${{ github.ref_name }} > ENVIRONMENT && zip -r bundle.zip . -x '*.git*'
run: zip -r bundle.zip . -x '*.git*'
- name: Deploy
uses: tmshkr/blue-green-beanstalk@latest
uses: tmshkr/blue-green-beanstalk@v3
with:
app_name: "test-app"
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }}
Expand All @@ -75,10 +75,10 @@ jobs:
deploy: true
green_env: "my-green-env"
platform_branch_name: "Docker running on 64bit Amazon Linux 2023"
production_cname: "blue-green-beanstalk-prod" # must be available
production_cname: "blue-green-beanstalk-prod"
promote: ${{ github.ref_name == 'main' }}
source_bundle: "bundle.zip"
staging_cname: "blue-green-beanstalk-staging" # must be available
version_description: "Deployed by ${{ github.triggering_actor }}"
staging_cname: "blue-green-beanstalk-staging"
version_description: ${{ github.event.head_commit.message }}
version_label: ${{ github.ref_name }}-${{ github.sha }}
```

0 comments on commit 9077a9a

Please sign in to comment.