Skip to content

Commit

Permalink
faet: unify ci/cd config #77 (#78)
Browse files Browse the repository at this point in the history
* feat: Created half part of the expected unified CI/CD file

* feat(CI/CD): Completed the joining of the cd/cd files into a single file.

* Modification(CI/CD): Removed unnecessary lines from CI/CD unified  configuration file for better code.

* Modification(CI/CD): added the login to the docker registry to the  CI/CD unified  configuration file for better code.

* Modification(CI/CD): added the login to the docker registry to the  CI/CD unified  configuration file for better code 1.

* feat: removed the files build-frontend.yml and build-and-deploy-pwa.yaml

---------

Co-authored-by: kouamschekina <[email protected]>
  • Loading branch information
Motouom and kouamschekina authored Mar 8, 2024
1 parent 3541749 commit 6b15fe2
Show file tree
Hide file tree
Showing 3 changed files with 100 additions and 123 deletions.
52 changes: 0 additions & 52 deletions .github/workflows/build-and-deploy-pwa.yaml

This file was deleted.

100 changes: 100 additions & 0 deletions .github/workflows/build-deploy-and-docker-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
name: Build, deploy and docker build frontend

on:
push:
branches:
- '**'
tags-ignore:
- 'v*'
pull_request:
branches:
- '**'

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}-frontend
jobs:
# Build Job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install Dependencies
run: cd power-pay-frontend && npm ci

- name: Build Project
run: cd power-pay-frontend && npm run build-for-gh

- name: Upload artifact to enable deployment
uses: actions/upload-artifact@v4
with:
name: production-files
path: power-pay-frontend/dist

# Deploy Job
deploy:
permissions:
pages: write
contents: write
# Add a dependency to the build job
needs: build
# Specify runner + deployment step
runs-on: ubuntu-latest
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: production-files
path: dist
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: dist


# Docker Build Job
docker-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to the Docker registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- id: string
uses: AsZc/change-string-case-action@v6
with:
string: ${{ env.IMAGE_NAME }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ steps.string.outputs.lowercase }}

- name: Build and push
uses: docker/build-push-action@v4
if: github.event_name != 'pull_request'
with:
context: ./power-pay-frontend
file: ./power-pay-frontend/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
71 changes: 0 additions & 71 deletions .github/workflows/build-frontend.yml

This file was deleted.

0 comments on commit 6b15fe2

Please sign in to comment.