Skip to content

Commit

Permalink
Add the preview deploy action
Browse files Browse the repository at this point in the history
  • Loading branch information
vramdhanie committed Oct 2, 2024
1 parent dd2b72f commit b3c92c2
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 4 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/deploy-preview.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Deploy to Preview Channel

on:
pull_request:
# Optionally configure to run only for specific files. For example:
# paths:
# - "website/**"

jobs:
build_and_preview:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Add any build steps here. For example:
# - run: npm ci && npm run build
- run: yarn install
- run: yarn build
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_GATSBYWEB }}'
expires: 30d
projectId: ${{ secrets.PROJECT_ID }}
channelId: preview
9 changes: 5 additions & 4 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ import { Icon } from 'astro-icon'
class="text-blue-500 underline hover:text-blue-400 hover:no-underline">Lindy</a
>. At Sybill we are managing the entire deal process from inception to close.
</div>
<div class="w-full text-center text-gray-200 font-sm my-4">- &#9702; -</div>
<div class="py-2">
Previously, I was a software engineer at <a
Previously, I was a senior software engineer at <a
href="https://lindy.ai"
class="text-blue-500 underline hover:text-blue-400 hover:no-underline">Lindy</a
>. Lindy is building a virtual employee. Lindy will change the way we work and live in
Expand Down Expand Up @@ -53,9 +54,9 @@ import { Icon } from 'astro-icon'
was able to spend some time teaching and mentoring students in this area.
</p>
<p class="py-2">
Today, I am part of a team of engineers that are implementing an artificial intelligence
system to free humanity from work. The challenges are myriad but the opportunities to
learn and explore are endless.
Today, I am part of a team of engineers that are finding ways to enable effective value
for humanity through artificial intelligence. The challenges are myriad but the
opportunities to learn and explore are endless.
</p>
</div>
<div class="w-full text-center text-gray-200 font-sm my-4">- &#9702; -</div>
Expand Down

0 comments on commit b3c92c2

Please sign in to comment.