mirror of https://gitlab.com/fscarmen/test.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.6 KiB
42 lines
1.6 KiB
name: Sync wireproxy latest version
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '13 2 * * *'
|
|
|
|
jobs:
|
|
build:
|
|
name: Sync wireproxy latest version
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
USERNAME: ${{ secrets.GH_USERNAME }}
|
|
EMAIL: ${{ secrets.GH_EMAIL }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3.4.0
|
|
- name: Update wireproxy to latest version
|
|
run: |
|
|
NOW=$(wget -qO- https://raw.githubusercontent.com/${{ env.USERNAME }}/warp/main/wireproxy/version_history | head -n 1 | sed "s/.*v\(.*\)/\1/g")
|
|
LATEST=$(wget -qO- "https://api.github.com/repos/octeep/wireproxy/releases/latest" | grep "tag_name" | head -n 1 | cut -d : -f2 | sed 's/[ \"v,]//g')
|
|
|
|
if [ "$LATEST" != "$NOW" ]; then
|
|
[ ! -d ${GITHUB_WORKSPACE}/wireproxy ] && mkdir -p ${GITHUB_WORKSPACE}/wireproxy
|
|
PLATFORM=( "linux_amd64" "linux_arm64" "linux_s390x" )
|
|
for i in "${PLATFORM[@]}"; do
|
|
wget -O ${GITHUB_WORKSPACE}/wireproxy/wireproxy_"$i".tar.gz https://github.com/octeep/wireproxy/releases/download/v"$LATEST"/wireproxy_"$i".tar.gz
|
|
done
|
|
|
|
sed -i "1i$(date "+%Y/%m/%d") v$LATEST" ${GITHUB_WORKSPACE}/wireproxy/version_history
|
|
|
|
echo "VERSION=$LATEST" >> $GITHUB_ENV
|
|
fi
|
|
|
|
- name: Upload to REPO
|
|
if: ${{ env.VERSION != '' }}
|
|
run: |
|
|
git config --global user.email "${{ env.EMAIL }}"
|
|
git config --global user.name "${{ env.USERNAME }}"
|
|
git add .
|
|
git commit -m "Sync wireproxy to V${{ env.VERSION }} by Github Actions, $(date "+%Y/%m/%d %H:%M:%S")"
|
|
git push
|
|
|