Skip to content

Merge pull request #5 from make-software/condor #2

Merge pull request #5 from make-software/condor

Merge pull request #5 from make-software/condor #2

Workflow file for this run

name: (DEV) Build
on:
push:
branches:
- 'master'
paths-ignore:
- '.github/**'
permissions:
id-token: write
contents: read
jobs:
build:
name: Build Image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ secrets.AWS_ACCESS_ROLE_DEV }}
role-session-name: GitHub_to_AWS_via_FederatedOIDC
aws-region: ${{ secrets.AWS_REGION }}
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v2
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: |
${{ steps.login-ecr.outputs.registry }}/${{ secrets.ECR_REPOSITORY_WALLET }}
tags: |
type=sha
type=raw,value=latest
- name: Build and push
uses: docker/build-push-action@v5
with:
file: infra/docker/Dockerfile
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}