1
0
Fork 0

Add actions

This commit is contained in:
Digital Studium 2023-03-26 14:23:40 +03:00
parent 39b1cca669
commit 7bcfbb604a
2 changed files with 36 additions and 0 deletions

View File

@ -16,3 +16,4 @@ languages:
params: params:
author: Константин Шуткин author: Константин Шуткин
description: Блог о Linux, DevOps, программировании и облачных технологиях description: Блог о Linux, DevOps, программировании и облачных технологиях

View File

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