This commit is contained in:
maxime-cool 2024-01-19 15:38:59 +01:00
commit 09bb59c25b

24
.gitea/workflows/test.yml Normal file
View file

@ -0,0 +1,24 @@
name: Gitea Actions
run-name: ${{ gitea.actor }} is testing Gitea Actions 🚀
on: [push]
jobs:
build and deploy:
steps:
- uses: actions/checkout@v3
- run: |
pwd
echo 'hello world'
ls -a
- name: Setup Hugo
uses: https://github.com/peaceiris/actions-hugo@v2
with:
hugo-version: 'latest'
extended: true
- name: Build
run: hugo --minify --config hugo.toml
- name: Deploy
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
run: hugo deploy --config hugo.toml