Files
BaC/.gitea/workflows/release.yml
VC 03ec18ce10
All checks were successful
release / build (push) Successful in 35s
test: ci pipeline
2025-02-28 16:59:57 +01:00

22 lines
446 B
YAML

---
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 -czvf bac-public-$(date -I).tar.gz public/
- name: Do release
uses: actions/upload-artifact@v4
with:
path: bac-public-$(date -I).tar.gz