Skip to content

Commit

Permalink
add build workflow, cleanup old infra files
Browse files Browse the repository at this point in the history
  • Loading branch information
okorolov committed Mar 11, 2024
1 parent a62dd67 commit 67964a5
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 131 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/dev-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: (DEV) Build

on:
push:
branches:
- 'master'
paths-ignore:
- '.github/**'

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:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
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 }}
119 changes: 0 additions & 119 deletions ci/Jenkinsfile

This file was deleted.

11 changes: 0 additions & 11 deletions ci/push.sh

This file was deleted.

2 changes: 1 addition & 1 deletion ci/docker/Dockerfile → infra/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ FROM nginx:1.22.0
WORKDIR /usr/share/nginx/html

COPY --from=builder /app/builder/build ./
COPY --from=builder /app/builder/ci/docker/nginx/nginx.conf /etc/nginx/nginx.conf
COPY --from=builder /app/builder/infra/docker/nginx/nginx.conf /etc/nginx/nginx.conf

File renamed without changes.

0 comments on commit 67964a5

Please sign in to comment.