File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,19 +10,26 @@ permissions:
1010 contents : read
1111
1212concurrency :
13- group : deploy-production
13+ group : deploy
1414 cancel-in-progress : false
1515
1616jobs :
1717 deploy :
18- name : Deploy production stage
18+ name : Deploy
1919 runs-on : ubuntu-latest
2020 environment : production
2121
2222 steps :
2323 - name : Checkout repository
2424 uses : actions/checkout@v4
2525
26+ - name : Configure AWS credentials
27+ uses : aws-actions/configure-aws-credentials@v4
28+ with :
29+ aws-access-key-id : ${{ secrets.AWS_ACCESS_KEY_ID }}
30+ aws-secret-access-key : ${{ secrets.AWS_SECRET_ACCESS_KEY }}
31+ aws-region : us-east-1
32+
2633 - name : Setup pnpm
2734 uses : pnpm/action-setup@v4
2835 with :
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ export default $config({
77 removal : input ?. stage === "production" ? "retain" : "remove" ,
88 protect : [ "production" ] . includes ( input ?. stage ) ,
99 home : "aws" ,
10- region : "us-east-1" ,
1110 } ;
1211 } ,
1312 async run ( ) {
You can’t perform that action at this time.
0 commit comments