Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ckhordiasma authored Jun 14, 2024
1 parent 175b188 commit 95add0a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,9 @@ The basic folder structure in this repo is as follows:

The build.yml file has all the implementation details for how this works, but basically it searches for subfolders in `resumes` and `cover-letters` that have `.tex` files, and tries to build a PDF for each file. Then it saves the PDFs as build artifacts, and in a later step these artifacts are published as releases.

In order to trigger a build only, you just need to do a pull request on the main branch and the pipeline will start. You can see the built pdfs in the build artifacts zip file. In order to make an automatic release, you need to create and push a tag that starts with "v". This tag will be used as the suffix for that release.
In order to trigger a build only, you just need to do a pull request on the main branch and the pipeline will start. You can see the built pdfs in the build artifacts zip file. In order to make an automatic release, you need to create and push a tag that starts with "v". This tag will be used as the suffix for that release. You can create and push tags from the cli like so:

```
git tag "name_of_tag"
git push --tags
```

0 comments on commit 95add0a

Please sign in to comment.