This commit is contained in:
22
.gitea/workflows/release.yml
Normal file
22
.gitea/workflows/release.yml
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
---
|
||||||
|
name: release
|
||||||
|
|
||||||
|
on:
|
||||||
|
- push
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout main
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Build only
|
||||||
|
uses: shalzz/zola-deploy-action@v0.20.0
|
||||||
|
env:
|
||||||
|
BUILD_ONLY: true
|
||||||
|
- run: tar -czf public-$(date -I).tar.gz public/
|
||||||
|
- name: Do release
|
||||||
|
uses: softprops/action-gh-release@v2
|
||||||
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
|
with:
|
||||||
|
files: "*.tar.gz"
|
Reference in New Issue
Block a user