Skip to content

Commit

Permalink
This commit will add new workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
AAVision committed Mar 29, 2024
1 parent 4f55b3f commit 411f808
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Deploy to GitHub

on:
push:
branches: ["main"]

jobs:
build-and-deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Use Node.js 21.x
uses: actions/setup-node@v1
with:
node-version: 21.x

- name: Prepare and deploy
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: npm ci
npm run ng deploy
2 changes: 1 addition & 1 deletion src/app/components/shared/footer/footer.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<footer class="footer items-center p-4 bg-slate-50">
<aside class="items-center grid-flow-col">
<img [defaultImage]="defaultImage" [lazyLoad]="'assets/images/lebanon-footer.svg'" alt="">
<img [defaultImage]="defaultImage" [lazyLoad]="'assets/images/lebanon-footer.svg'" alt="">
<p>Copyright © {{anio}} - All right reserved by <a class="link"
href="https://lb.linkedin.com/in/ali-alachkar-47b48a190" target="_blank">Ali Alachkar</a></p>
</aside>
Expand Down

0 comments on commit 411f808

Please sign in to comment.