diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-03 18:33:45 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-03 18:33:45 +0300 |
commit | e345413707f00eda7dcf5997942354b334552ca0 (patch) | |
tree | c7d5f2f462ffbf0c26bdc3649951705f22f24f36 /.github | |
parent | workflows/build: fix artifact name (diff) | |
download | cv-e345413707f00eda7dcf5997942354b334552ca0.tar.gz cv-e345413707f00eda7dcf5997942354b334552ca0.zip |
workflows/build: tweak step names
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 26f796c..cf5302c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,14 +16,14 @@ jobs: run: | docker-compose build docker-compose up - - name: PDF as artifact + - name: Attach as artifact uses: actions/upload-artifact@v2 with: name: cv path: cv/cv.pdf - - name: Clean up auxiliary files + - name: Clean up run: sudo make clean - - name: PDF to GitHub Pages + - name: Publish on GitHub Pages uses: JamesIves/github-pages-deploy-action@4.1.0 with: branch: gh-pages |