1
0
Fork 0
digitalstudium.com/.gitea/workflows/deploy.yaml

36 lines
821 B
YAML
Raw Normal View History

2023-03-26 11:23:40 +00:00
name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
2023-03-26 11:38:19 +00:00
- uses: actions/checkout@v3
2023-03-26 11:23:40 +00:00
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Setup Hugo
2023-03-26 11:42:50 +00:00
uses: https://github.com/peaceiris/actions-hugo@v2.6.0
2023-03-26 11:23:40 +00:00
with:
hugo-version: "0.110.0"
extended: true
- name: Build
run: hugo --minify
- name: Deploy
2023-03-26 11:42:50 +00:00
uses: https://github.com/nekitcorp/yandex-storage-website-action@v2
2023-03-26 11:23:40 +00:00
with:
2023-03-26 11:47:50 +00:00
access-key-id: ${{ secrets.ACCESS_KEY_ID }}
secret-access-key: ${{ secrets.SECRET_ACCESS_KEY }}
2023-03-26 11:23:40 +00:00
bucket: ${{ secrets.BUCKET }}
2023-03-26 11:51:10 +00:00
include: |
2023-03-26 11:55:57 +00:00
./public/**/*
2023-03-26 11:23:40 +00:00