Skip to content

Build geoip files

Build geoip files #20

Workflow file for this run

name: Build geoip files
on:
workflow_dispatch:
schedule:
- cron: "15 3 * * 0-6"
push:
branches:
- master
paths-ignore:
- ".gitignore"
- "LICENSE*"
- "*.md"
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout codebase
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- name: Set variables
run: |
echo "TAG_NAME=$(date +%Y%m%d%H%M)" >> $GITHUB_ENV
echo "RELEASE_NAME=$(date +%Y%m%d%H%M)" >> $GITHUB_ENV
shell: bash
- name: Download antizapret databases
run: |
mkdir -p output
curl -L "https://github.com/savely-krasovsky/antizapret-sing-box/releases/latest/download/antizapret.srs" -o ./output/antizapret.srs
- name: Build geoip files
run: |
go build ./
./geoip convert -c ./config.json
- name: Generate sha256 checksum for dat files
run: |
cd ./output || exit 1
for name in $(ls *.dat); do
sha256sum ${name} > ./${name}.sha256sum
done
- name: Git push assets to "release" branch
run: |
cd output || exit 1
git init
git config --local user.name "Aleks K."
git config --local user.email "57315999+Kerlios@users.noreply.github.com"
git checkout -b release
git add -A
git commit -m "${{ env.RELEASE_NAME }}"
git remote add geoip "https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}"
git push -f -u geoip release
- name: Remove some files to avoid publishing to GitHub release
run: |
rm -rf ./output/{clash,mrs,nginx,srs,surge,text}
- name: Upload files to GitHub release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file_glob: true
file: ./output/*
release_name: ${{ env.RELEASE_NAME }}
tag: ${{ env.TAG_NAME }}