Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update GitHub Actions workflow to use OpenID Connect #12

Merged
merged 1 commit into from
Aug 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,24 @@ on:
types: [opened, synchronize, reopened]
workflow_dispatch: ~

permissions:
id-token: write
contents: read

jobs:
build:
runs-on: ubuntu-latest
name: Build and publish artifacts
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Check if secrets are available for publishing
run: echo "SECRETS_AVAILABLE=${{ secrets.AWS_ACCESS_KEY_ID }}" >> $GITHUB_ENV
- name: Configure AWS Credentials
if: env.SECRETS_AVAILABLE
uses: aws-actions/configure-aws-credentials@v1
uses: actions/checkout@v4
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v3
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
role-to-assume: arn:aws:iam::985752656544:role/reporting-github-actions
role-session-name: reporting-github-actions
aws-region: us-west-2
- name: Create application bundle
if: env.SECRETS_AVAILABLE
uses: Safecast/github-actions/bundle-application@v1
with:
app: reporting
Expand Down
Loading