Merge branch 'dev' #23
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
# Pushes Docker images created from the deploy tool's Dockerfile templates to an internal ECR so that they can be scanned for security vulnerabilities. | |
name: Upload Docker Images | |
on: | |
# Manually trigger on specific branches | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
permissions: | |
id-token: write | |
jobs: | |
upload-docker-images: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@8c3f20df09ac63af7b3ae3d7c91f105f857d8497 #v4 | |
with: | |
aws-region: us-west-2 | |
role-to-assume: ${{ secrets.DOCKER_IMAGE_UPLOADER_ROLE }} | |
role-duration-seconds: 1800 | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET Core 6.0 | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.0.x | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --no-restore | |
- name: Run Docker Image Uploader | |
run: | | |
cd ./test/AWS.Deploy.DockerImageUploader | |
dotnet run --project ./AWS.Deploy.DockerImageUploader.csproj |