Skip to content

Commit

Permalink
Add commit and push step to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
thevahidal committed Dec 28, 2023
1 parent 362b2ff commit c93019f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/hellow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,9 @@ jobs:

- run: poetry install
- run: poetry run python script.py
- run: |
git add -A
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git commit -m 'Deploy'
git push
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -159,4 +159,3 @@ cython_debug/
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/

index.html
8 changes: 8 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><style>
body {
font-family: sans-serif;
}
.section > .title {
color: red;
}
</style></head><body><div class="section"><h1 class="title">Projects</h1><p class="description">Some of my projects</p><div class="item"><h2 class="title">Soul</h2><p class="description">A simple, fast and lightweight PHP framework.</p><a class="url" href="https://github.com/thevahidal/soul">Link</a></div><div class="item"><h2 class="title">Bukowski</h2><p class="description">A beautiful typewriter</p><a class="url" href="https://github.com/thevahidal/bukowski">Link</a></div></div><div class="section"><h1 class="title">Links</h1><p class="description">Some of my links</p><div class="item"><h2 class="title">GithHub</h2><a class="url" href="https://github.com/thevahidal">Link</a></div><div class="item"><h2 class="title">Linkedin</h2><a class="url" href="https://www.linkedin.com/in/thevahidal/">Link</a></div><div class="item"><h2 class="title">Twitter</h2><a class="url" href="https://twitter.com/thevahidal">Link</a></div></div></body></html>

0 comments on commit c93019f

Please sign in to comment.