Skip to content

Commit

Permalink
v2.5.0 (#53)
Browse files Browse the repository at this point in the history
* Adds Resume (#48)

* Adds Resume

* Adds styling to Resume

* Hooks Resume to Home

* Correct gramatical mistakes and remove firebase performance (#50)

* Entire tab on nav bar clickable and grammar change

* Updates babel

* Removes robot.txt

* Removes firebase performance

* Adds better Description

* Correct gramatical mistakes and remove firebase performance (#50)

* Entire tab on nav bar clickable and grammar change

* Updates babel

* Removes robot.txt

* Removes firebase performance

* Adds better Description

remove

* Adds versioning script

* integrates release into cicd

* Setup releases to be created only after upload artifacts and only on master branch
  • Loading branch information
theVinesh authored Aug 21, 2019
1 parent 2397827 commit a79aada
Show file tree
Hide file tree
Showing 4 changed files with 13,399 additions and 19,889 deletions.
22 changes: 21 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,14 @@ jobs:
- persist_to_workspace:
root: .
paths:
- ./.git
- ./node_modules
- ./dist
- ./package.json
- ./firebase.json
- ./.firebaserc
- ./.netlify
- ./scripts


test:
Expand Down Expand Up @@ -64,6 +66,16 @@ jobs:
name: Deploying to staging
command: |
./node_modules/.bin/netlify deploy -p --dir=dist
create_release:
<<: *base_config
steps:
- attach_workspace:
at: .
- run:
name: Creating release
command: npm run release

workflows:
version: 2
build-test-deploy:
Expand All @@ -75,10 +87,18 @@ workflows:
- upload_artifacts:
requires:
- build
- deploy_prod:
- create_release:
requires:
- build
- test
- upload_artifacts
filters:
branches:
only: master
- deploy_prod:
requires:
- build
- test
filters:
branches:
only: master
Expand Down
Loading

0 comments on commit a79aada

Please sign in to comment.