-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(deploy): add workflow for deployment (#99)
* cd: add workflow for deployment - Added a GitHub Actions workflow to handle the deployment process. - Automates the deployment steps to streamline the release pipeline. - Ensures consistent and reliable deployments across environments. * cd(deploy): update readme * cd(deploy): add workflow dispatch trigger for build * chore: add semantic configuration
- Loading branch information
1 parent
89d4552
commit 8a750b8
Showing
4 changed files
with
39 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ on: | |
pull_request: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
||
|
@@ -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! | ||
|