36 lines
819 B
YAML
36 lines
819 B
YAML
name: Deploy
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: true # Fetch Hugo themes (true OR recursive)
|
|
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
|
|
|
|
- name: Setup Hugo
|
|
uses: https://github.com/peaceiris/actions-hugo@v2.6.0
|
|
with:
|
|
hugo-version: "0.110.0"
|
|
extended: true
|
|
|
|
- name: Build
|
|
run: hugo --minify
|
|
|
|
- name: Deploy
|
|
uses: https://github.com/nekitcorp/yandex-storage-website-action@v2
|
|
with:
|
|
accessKeyId: ${{ secrets.ACCESS_KEY_ID }}
|
|
secretAccessKey: ${{ secrets.SECRET_ACCESS_KEY }}
|
|
bucket: ${{ secrets.BUCKET }}
|
|
path: "./public"
|
|
clear: true
|
|
|