Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e346e6500d | |||
| 6f3c58bfcd | |||
| 83db698f8d | |||
| f152379882 | |||
| d3aed167fa |
@@ -3,9 +3,20 @@ name: CI/CD Pipeline
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
pull_request:
|
||||
branches: [main]
|
||||
workflow_dispatch:
|
||||
|
||||
# Serialise runs on the shared act_runner: prevents two simultaneous runs from
|
||||
# cancelling each other's in-progress steps (observed in older portfolio runs).
|
||||
# See python-project-template-internal/.gitea/workflows/ci.yaml for the same
|
||||
# pattern with full context (runs 794 and 799).
|
||||
concurrency:
|
||||
group: ci-${{ github.ref }}
|
||||
cancel-in-progress: false
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
build:
|
||||
name: Build & Deploy
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
@@ -15,4 +26,4 @@ jobs:
|
||||
run: |
|
||||
docker login gitlab.impresion3d.pro -u "${{ secrets.DOCKER_USERNAME }}" -p "${{ secrets.DOCKER_PASSWORD }}"
|
||||
docker build -t gitlab.impresion3d.pro/root/davidaragon-portfolio:latest .
|
||||
docker push gitlab.impresion3d.pro/root/davidaragon-portfolio:latest
|
||||
docker push gitlab.impresion3d.pro/root/davidaragon-portfolio:latest
|
||||
@@ -54,9 +54,15 @@ import Footer from '../components/layout/Footer.astro';
|
||||
<section class="mb-12">
|
||||
<h2 class="text-3xl font-semibold mb-4">What I'm Doing Now</h2>
|
||||
<p class="text-text-secondary leading-relaxed mb-4">
|
||||
I work full-time at KEO as Field Application Engineer, where I handle technical
|
||||
I work full-time at KEO as Field Application Engineer, where I handle technical
|
||||
documentation, workflow automation, internal tools, and customer-facing support.
|
||||
</p>
|
||||
<p class="text-text-secondary leading-relaxed mb-4">
|
||||
<em class="text-text-tertiary text-sm">
|
||||
Last site update: 2026-07-09 (build sha visible in the CI run that produced this
|
||||
version of the page).
|
||||
</em>
|
||||
</p>
|
||||
<p class="text-text-secondary leading-relaxed mb-4">
|
||||
In parallel, I'm building <strong class="text-primary">WarrantyHub</strong> — a platform
|
||||
for end users to manage warranties for their home products from one place.
|
||||
|
||||
Reference in New Issue
Block a user