Skip to content

Commit

Permalink
cicd fix
Browse files Browse the repository at this point in the history
  • Loading branch information
allengueco committed Nov 7, 2024
1 parent 92af34b commit b6372c9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
path: distfiles

- name: Deploy SCP
uses: appleboy/[email protected]
uses: appleboy/[email protected].7
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
Expand Down
8 changes: 4 additions & 4 deletions src/app/experience/experience.component.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<div class="container flex flex-col">
@for (e of experiences; track $index) {
<div class="max-w-lg p-6 bg-lavender border border-gray-200 mb-4 rounded-lg">
<h5 class="font-sans leading-snug mb-1 text-xl font-bold tracking-tight text-gray-900">{{e.title}} · {{e.company}}</h5>
<p class="text-subtext0">{{e.duration}}</p>
<p class="font-sans leading-none text-lg font-normal text-gray-700">{{e.summary}}</p>
<div class="max-w-lg p-6 bg-blue border border-gray-200 mb-4 rounded-lg">
<h5 class="font-sans leading-snug mb-1 text-xl font-bold tracking-tight text-mantle">{{e.title}} · {{e.company}}</h5>
<p class="text-surface0">{{e.duration}}</p>
<p class="font-sans leading-none text-lg font-normal text-subtext0">{{e.summary}}</p>
<div class="flex flex-wrap">
@for (skill of e.skills; track $index) {
<div class="flex justify-center items-center m-1 font-medium py-1 px-2 bg-white rounded-full border border-gray-300">
Expand Down
5 changes: 3 additions & 2 deletions src/app/home/home.component.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<section class="container flex flex-col h-full w-full items-center">
<section class="container flex flex-col h-full w-full items-center text-text">
<h1 class="antialiased tracking-tighter font-medium text-6xl font-code">
<a class="text-green">$</a> allen gueco</h1>
<a class="text-green">$</a>allen gueco
</h1>
<h2 class="text-3xl">i am a software engineer based in philly</h2>
<app-experience></app-experience>
</section>

0 comments on commit b6372c9

Please sign in to comment.