Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(deploy): add workflow for deployment #99

Merged
merged 4 commits into from
Jan 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/semantic.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
types:
- feat
- fix
- docs
- style
- refactor
- perf
- test
- build
- ci
- cd
- chore
- revert
1 change: 1 addition & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
pull_request:
branches:
- main
workflow_dispatch:

jobs:
build:
Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Portfolio - Deploy

on:
workflow_dispatch:

jobs:
build:
name: Deploy Application
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v4

- name: Download Build Artifact
uses: actions/download-artifact@v4
with:
name: dist

- name: Deploy to GitHub Pages
run: |
npm install -g gh-pages
npm run deploy
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ In addition to my primary focus on building user-centric web and mobile applicat

- `Frontend` - React.js, Next.js, Flutter

- `Backend` - Express.js, .NET, Go, Python
- `Backend` - Go, .NET, Express.js, Python

- `Databases` - MongoDB, Supabase, Firebase, SQLite, MySQL, PostgreSQL

- `Cloud & Microservices` - AWS, Google Cloud, Microsoft Azure

- `Others` - Unity, Tensorflow, Figma, Rive, Photoshop, Postman, Trello, Notion
- `Others` - Unity, Tensorflow, Figma, Rive, Photoshop, Postman, Trello, Notion, Slack

# 📁 Projects

Expand Down Expand Up @@ -64,8 +64,6 @@ Feel free to reach out if you have any questions or would like to collaborate on

- `Email`: [[email protected]](mailto:[email protected])

- `LinkedIn`: [LinkedIn](https://www.linkedin.com/in/ghiantan)

## 🤝 Contributing

Feel free to fork this repository and contribute by submitting a pull request. All contributions are welcome!
Expand Down
Loading