blob: e045c77f4d60bd155f7cda71f44a319399f4962f (
plain) (
tree)
|
|
name: Build
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
name: Build
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: make build/docker
- name: Publish as artifact
uses: actions/upload-artifact@v3
with:
name: cv
path: cv/cv.pdf
if-no-files-found: error
- name: Clean up
run: sudo make clean
- name: Publish to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: cv
single-commit: true
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
- name: Set up ssh-agent
uses: webfactory/ssh-agent@v0.5.3
with:
ssh-private-key: '${{ secrets.REMOTE_SSH_KEY }}'
- name: Deploy
run: make deploy
env:
REMOTE_USER: '${{ secrets.REMOTE_USER }}'
REMOTE_HOST: '${{ secrets.REMOTE_HOST }}'
REMOTE_PORT: '${{ secrets.REMOTE_PORT }}'
REMOTE_DIR: '${{ secrets.REMOTE_DIR }}'
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
|