-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GH workflow actions to deploy all services
- Loading branch information
Showing
5 changed files
with
181 additions
and
6 deletions.
There are no files selected for viewing
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,45 @@ | ||
# github action to deploy forwarder sls service to prod | ||
|
||
name: Deploy forwarder service to prod | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- forwarder/** | ||
- .github/workflows/sls-forwarder.yaml | ||
|
||
jobs: | ||
deploy: | ||
name: Deploy | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Configure AWS credentials | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
aws-access-key-id: ${{ vars.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: ${{ vars.AWS_REGION }} | ||
- name: Install Node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: '18.x' | ||
- name: Install serverless framework | ||
run: npm install -g serverless | ||
- name: Install node dependencies | ||
working-directory: forwarder | ||
run: npm ci | ||
- name: Install python3.9 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.9' | ||
- name: Package and deploy | ||
working-directory: forwarder | ||
run: | | ||
serverless deploy \ | ||
--region ${{ vars.AWS_REGION }} \ | ||
--stage ${{ vars.SLSSTAGE }} \ | ||
--verbose |
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,45 @@ | ||
# github action to deploy generator sls service to prod | ||
|
||
name: Deploy generator service to prod | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- generator/** | ||
- .github/workflows/sls-generator.yaml | ||
|
||
jobs: | ||
deploy: | ||
name: Deploy | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Configure AWS credentials | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
aws-access-key-id: ${{ vars.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: ${{ vars.AWS_REGION }} | ||
- name: Install Node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: '18.x' | ||
- name: Install serverless framework | ||
run: npm install -g serverless | ||
- name: Install node dependencies | ||
working-directory: generator | ||
run: npm ci | ||
- name: Install python3.9 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.9' | ||
- name: Package and deploy | ||
working-directory: generator | ||
run: | | ||
serverless deploy \ | ||
--region ${{ vars.AWS_REGION }} \ | ||
--stage ${{ vars.SLSSTAGE }} \ | ||
--verbose |
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,45 @@ | ||
# github action to deploy notifier sls service to prod | ||
|
||
name: Deploy notifier service to prod | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- notifier/** | ||
- .github/workflows/sls-notifier.yaml | ||
|
||
jobs: | ||
deploy: | ||
name: Deploy | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Configure AWS credentials | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
aws-access-key-id: ${{ vars.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: ${{ vars.AWS_REGION }} | ||
- name: Install Node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: '18.x' | ||
- name: Install serverless framework | ||
run: npm install -g serverless | ||
- name: Install node dependencies | ||
working-directory: notifier | ||
run: npm ci | ||
- name: Install python3.9 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.9' | ||
- name: Package and deploy | ||
working-directory: notifier | ||
run: | | ||
serverless deploy \ | ||
--region ${{ vars.AWS_REGION }} \ | ||
--stage ${{ vars.SLSSTAGE }} \ | ||
--verbose |
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,45 @@ | ||
# github action to deploy scraper sls service to prod | ||
|
||
name: Deploy scraper service to prod | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- scraper/** | ||
- .github/workflows/sls-scraper.yaml | ||
|
||
jobs: | ||
deploy: | ||
name: Deploy | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Configure AWS credentials | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
aws-access-key-id: ${{ vars.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: ${{ vars.AWS_REGION }} | ||
- name: Install Node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: '18.x' | ||
- name: Install serverless framework | ||
run: npm install -g serverless | ||
- name: Install node dependencies | ||
working-directory: scraper | ||
run: npm ci | ||
- name: Install python3.9 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.9' | ||
- name: Package and deploy | ||
working-directory: scraper | ||
run: | | ||
serverless deploy \ | ||
--region ${{ vars.AWS_REGION }} \ | ||
--stage ${{ vars.SLSSTAGE }} \ | ||
--verbose |
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