diff options
-rw-r--r-- | .github/workflows/build.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..2eabc4a --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,23 @@ +name: Build + +on: + push: + pull_request: + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-20.04 + name: Build + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Build the PDF + run: | + docker-compose build + docker-compose up + - name: Upload the PDF + uses: actions/upload-artifact@v2 + with: + name: Egor_Tensin_CV_en + path: cv/cv.pdf |