Skip to content

test new workflow

test new workflow #42

Workflow file for this run

on:
push:
branches: ["master"]
workflow_dispatch:
concurrency:
group: "comparch"
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
update:
runs-on: ubuntu-22.04
steps:
- name: Install
run: sudo apt-get update && sudo apt-get install nodejs hugo rclone
- name: Checkout
uses: nschloe/action-cached-lfs-checkout@v1
- name: Cache NPM dependencies
uses: actions/cache@master
with:
path: themes/geekblog/node_modules
key: ${{ runner.OS }}-npm-cache-${{ hashFiles('themes/geekblog/package-lock.json') }}
- name: Build theme
working-directory: ${{ github.workspace }}/themes/geekblog
run: npm install && npm run build
- name: Build with Hugo
run: hugo
- name: Create ZIP Archive
run: zip -r site.zip public/
- name: Send ZIP to Web for deployment
run: |
curl -X POST -H "Authorization: Bearer ${{ secrets.FtpPass }}" -F "[email protected]" http://eval.comparch.edu.cvut.cz:1111/github-actions/update-web