-
Notifications
You must be signed in to change notification settings - Fork 1
36 lines (36 loc) · 1.01 KB
/
workflow.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: "workflow"
on:
push:
branches:
- master
pull_request:
branches:
- "*"
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pre-commit/[email protected]
deploy:
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/master' }}
needs: [ 'pre-commit' ]
permissions:
id-token: write
contents: read
steps:
- name: 'Checkout'
uses: actions/checkout@v4
- name: Assume AWS Role
uses: aws-actions/configure-aws-credentials@v4
with:
aws-region: us-east-1
role-to-assume: arn:aws:iam::743644221192:role/gh-oidc-sceptre-aws
role-session-name: GitHubActions-${{ github.repository_owner }}-${{ github.event.repository.name }}-${{ github.run_id }}
role-duration-seconds: 1800
- name: 'Sceptre Deploy'
uses: Sceptre/[email protected]
with:
sceptre_version: '4.3.0'
sceptre_subcommand: 'launch prod --prune --yes'