website/.gitea/workflows/create-archive.yml

30 lines
876 B
YAML
Raw Normal View History

name: create archive with lfs
on:
push:
tags:
- '*'
jobs:
tag:
runs-on: native
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
2024-09-26 20:55:37 +03:00
lfs: false
- name: Checkout LFS
run: |
function EscapeForwardSlash() { echo "$1" | sed 's/\//\\\//g'; }
readonly ReplaceStr="EscapeForwardSlash ${{ gitea.repository }}.git/info/lfs/objects/batch"; sed -i "s/\(\[http\)\( \".*\)\"\]/\1\2`$ReplaceStr`\"]/" .git/config
git config --local lfs.transfer.maxretries 1
2024-09-26 21:05:15 +03:00
git lfs install --local
2024-09-26 20:57:28 +03:00
git lfs fetch origin refs/tags/${{ gitea.ref_name }}
2024-09-26 20:55:37 +03:00
git lfs checkout
2024-09-26 21:30:52 +03:00
- run: XZ_OPT=-9 tar --exclude='./.git' -cvJf ../source.txz --directory=. .
2024-09-26 21:29:37 +03:00
- run: du -sh ../source.txz
2024-09-26 20:38:02 +03:00
- uses: https://gitea.com/actions/gitea-release-action@v1
with:
files: |-
2024-09-26 21:29:37 +03:00
../source.txz