Skip to content

Commit

Permalink
updated logo and switched to oidc
Browse files Browse the repository at this point in the history
  • Loading branch information
jburns24 committed Sep 28, 2023
1 parent 31c8a5c commit c80f934
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ on:
branches:
- demo

# permissions:
# id-token: write # Needed to modify JWT token for OIDC
# contents: read # Needed for actions/checkout
permissions:
id-token: write # Needed to modify JWT token for OIDC
contents: read # Needed for actions/checkout

jobs:
run:
Expand All @@ -29,10 +29,10 @@ jobs:
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@50ac8dd1e1b10d09dac7b8727528b91bed831ac0 # v3
with:
aws-access-key-id: ${{ secrets.PERSONAL_ACCESS_KEY }}
aws-secret-access-key: ${{ secrets.PERSONAL_SECRET_ACCESS_KEY }}
role-to-assume: ${{ secrets.ROLE_TO_ASSUME }}
# role-to-assume: ${{ vars.OIDC_ROLE }}
# aws-access-key-id: ${{ secrets.PERSONAL_ACCESS_KEY }}
# aws-secret-access-key: ${{ secrets.PERSONAL_SECRET_ACCESS_KEY }}
# role-to-assume: ${{ secrets.ROLE_TO_ASSUME }}
role-to-assume: ${{ vars.OIDC_ROLE }}
aws-region: ${{ vars.AWS_REGION }}
role-skip-session-tagging: true

Expand Down
4 changes: 2 additions & 2 deletions src/components/Layout/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ const Layout = ({ children }: Props) => (
<a className={styles.navbarBrand}>
<span className={globalStyles.logo}>
<Image
src="/dojo-logo-sm.png"
// src="/wildcat.png"
// src="/dojo-logo-sm.png"
src="/wildcat.png"
alt="dojo-small"
width={50}
height={50}
Expand Down
4 changes: 2 additions & 2 deletions src/components/ShareForm/ShareForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ const ShareForm = (props: Props) => {
<div className={styles.flexChildLeft}>
<Image
alt="exampleCompany Logo"
src="/dojo-logo-sm.png"
// src="/chico.png"
// src="/dojo-logo-sm.png"
src="/chico.png"
width="400px"
height="400px"
/>
Expand Down

0 comments on commit c80f934

Please sign in to comment.