Skip to content

Commit

Permalink
test the CI - separate each steps for mor visibility on the builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Matlavv committed Nov 15, 2024
1 parent 78a05e0 commit f49e0e1
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 25 deletions.
61 changes: 37 additions & 24 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ on:
env:
IMAGE_NAME: amelieloulou/transform-and-deliver-assets
CHART_PATH: ./opensource

jobs:
build-and-push-docker:
setup-docker:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand All @@ -27,38 +27,51 @@ jobs:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

build-and-push-docker-api:
runs-on: ubuntu-latest
needs: setup-docker
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Build and push Docker image API
run: |
docker buildx build --platform linux/amd64,linux/arm64 --push -t ${{ env.IMAGE_NAME }}:latest ./src/api
build-and-push-docker-job:
runs-on: ubuntu-latest
needs: setup-docker
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Build and push Docker image Job
run: |
docker buildx build --platform linux/amd64,linux/arm64 --push -t ${{ env.IMAGE_NAME }}:job-latest ./src
publish-helm-chart:
runs-on: ubuntu-latest
needs: build-and-push-docker
setup-helm:
runs-on: ubuntu-latest
needs: build-and-push-docker-job
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Install Helm
uses: azure/setup-helm@v3
with:
version: v3.11.1

- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Install Helm
uses: azure/setup-helm@v3
with:
version: v3.11.1
push-helm-chart:
runs-on: ubuntu-latest
needs: setup-helm
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Package Helm chart
run: |
helm package opensource
- name: Package Helm chart
run: |
helm package opensource
- name: Push Helm chart to Docker Hub
run: |
helm push $(ls *.tgz) oci://registry-1.docker.io/amelieloulou
- name: Push Helm chart to Docker Hub
run: |
helm push $(ls *.tgz) oci://registry-1.docker.io/amelieloulou
2 changes: 1 addition & 1 deletion src/api/utils/catalog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export const formatItemForCatalog = async (
uuid: newUUID,
version: 1,
namespace,
public_url: `${app.locals.PREFIXED_ASSETS_URL}/${mimetype === 'application/pdf' || mimetype === 'image/svg+xml' ? 'original' : 'full'}${finalPath}`,
public_url: `${process.env.NGINX_INGRESS}${app.locals.PREFIXED_ASSETS_URL}/${mimetype === 'application/pdf' || mimetype === 'image/svg+xml' ? 'original' : 'full'}${finalPath}`,
unique_name: finalPath,
filename: toWebp && ['image/jpeg', 'image/png'].includes(mimetype) ? resourceName.split('.')[0] + '.webp' : resourceName,
original_filename: resourceName,
Expand Down

0 comments on commit f49e0e1

Please sign in to comment.