Added first workflow
All checks were successful
Build and Publish Web / build (push) Successful in 4m0s
All checks were successful
Build and Publish Web / build (push) Successful in 4m0s
This commit is contained in:
44
.gitea/workflows/deploy.yml
Normal file
44
.gitea/workflows/deploy.yml
Normal file
@@ -0,0 +1,44 @@
|
||||
name: Build and Publish Web
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Code checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '18'
|
||||
|
||||
- name: Hugo Setup
|
||||
uses: peaceiris/actions-hugo@v2
|
||||
with:
|
||||
hugo-version: 'latest'
|
||||
extended: true
|
||||
|
||||
- name: Web Build
|
||||
run: |
|
||||
cd themes/minimal-black
|
||||
npm install
|
||||
cd ../..
|
||||
hugo --minify
|
||||
|
||||
- name: Packaging ZIP
|
||||
run: |
|
||||
cd public
|
||||
zip -r ../build.zip ./*
|
||||
|
||||
- name: Uploading package back to gitea
|
||||
run: |
|
||||
curl --user "${{ github.actor }}:${{ secrets.PACKAGE_TOKEN }}" \
|
||||
--upload-file build.zip \
|
||||
"https://git.jirkabuilds.dev/api/packages/${{ github.repository_owner }}/generic/hugo-build/latest/web.zip"
|
||||
|
||||
# TODO - Webhook
|
||||
|
||||
Reference in New Issue
Block a user