简单压缩,生成的文件中相邻的前缀相同前缀字符用波浪线替代,最终文件缩减又110k,目前116k。未经完全测试。 #39
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto Generate Release | |
on: | |
push: | |
paths: | |
- 'gfw.pac' | |
workflow_dispatch: | |
jobs: | |
generate-release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Git | |
run: | | |
git config --global user.name "GitHub Actions" | |
git config --global user.email "[email protected]" | |
- name: Generate Release Name | |
id: commit_count | |
run: | | |
today=$(TZ=Asia/Shanghai date +%Y%m%d) | |
commit_count=$(TZ=Asia/Shanghai git log --date=local --since="$today 00:00:00" --until="$today 23:59:59" --pretty=format: --name-only | grep -c '^gfw.pac$') | |
echo "COMMIT_COUNT=$commit_count" >> $GITHUB_ENV | |
echo "RELEASE_NAME=v$(TZ='Asia/Shanghai' date +%Y%m%d).$commit_count" >> $GITHUB_ENV | |
echo "COMMIT_MESSAGE=$(git log -1 --pretty=%B)" >> $GITHUB_ENV | |
- name: Create Tag | |
id: create_tag | |
run: | | |
git tag "${{ env.RELEASE_NAME }}" | |
git push origin ${{ env.RELEASE_NAME }} | |
- name: Create Release | |
id: create_release | |
uses: softprops/action-gh-release@v2 | |
with: | |
tag_name: "${{ env.RELEASE_NAME }}" | |
name: "${{ env.RELEASE_NAME }}" | |
body: "${{ env.COMMIT_MESSAGE }}" | |
draft: false | |
prerelease: false | |
files: gfw.pac |