Skip to content

Commit

Permalink
feat(deploy): add workflow for deployment (#99)
Browse files Browse the repository at this point in the history
* 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
Fingertips18 authored Jan 18, 2025
1 parent 89d4552 commit 8a750b8
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 4 deletions.
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

0 comments on commit 8a750b8

Please sign in to comment.