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

35 lines
980 B
YAML
Raw Permalink 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
- run: |
sourcepath="$(basename $(pwd))"
2024-09-26 23:26:12 +03:00
cd ..
cp -r $sourcepath website && rm -rf website/.git
tar -cvzf source.tgz website
cd $sourcepath
2024-09-26 22:21:03 +03:00
- run: du -sh ../source.tgz
2024-09-26 20:38:02 +03:00
- uses: https://gitea.com/actions/gitea-release-action@v1
with:
files: |-
2024-09-26 22:21:03 +03:00
../source.tgz