This repo contains a resume and CV for Jonghoon Seo.
This repository is built using bazel.
To release artifacts to the Github Release, you need to push a new tag.
- Tag to the commit
$ git tag "some-tag-version"
- Push the tag to remote
$ git push origin --tags
- Verify artifacts are correctly registered to Github Release page
This repo uses Awesome-CV as a latex
style package. To manage the package for this repo, we use git subtree
.
To push the modification in Awesome-CV
directory to Awesome-CV
repo,
execute the following:
$ git subtree push --prefix=Awesome-CV awesome-cv from-main-project
To pull the contents of master
branch to Awesome-CV
directory,
execute the following:
$ git subtree pull --prefix=Awesome-CV awesome-cv master