opt-out-import dev deploy #3
Workflow file for this run
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
name: opt-out-import dev deploy | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- optout/** | |
- .github/workflows/opt-out-import-dev-deploy.yml | |
workflow_dispatch: | |
jobs: | |
test: | |
permissions: | |
contents: read | |
id-token: write | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: bcda | |
environment: dev | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
- name: Build opt-out-import zip file | |
run: | | |
go build -o bin/opt-out-import ./lambda/optout/main.go | |
zip -j function.zip bin/opt-out-import | |
- uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-region: ${{ vars.AWS_REGION }} | |
role-to-assume: arn:aws:iam::${{ secrets.ACCOUNT_ID }}:role/delegatedadmin/developer/bcda-dev-github-actions | |
- name: Upload and reload | |
run: | | |
aws s3 cp --no-progress function.zip \ | |
s3://bcda-dev-opt-out-import-function/function-${{ github.sha }}.zip | |
aws lambda update-function-code --function-name bcda-dev-opt-out-import \ | |
--s3-bucket bcda-dev-opt-out-import-function --s3-key function-${{ github.sha }}.zip |