Skip to content
This repository has been archived by the owner on Jul 8, 2024. It is now read-only.

Fetch gost Binaries #355

Fetch gost Binaries

Fetch gost Binaries #355

Workflow file for this run

name: Fetch gost Binaries
#MAX_RUNTIME: 15 Minutes 45 21 * * * [21:45 (09:45 PM) UTC --> (05H+45M) 03:30 AM NPT ]
on:
workflow_dispatch:
schedule:
- cron: "45 21 * * *"
# https://crontab.guru
# https://savvytime.com/converter/utc-to-nepal-kathmandu
env:
# https://i.redd.it/o6xypg00uac91.png
USER_AGENT: "Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/115.0.5790.160 Mobile/15E148 Safari/604.1"
GITHUB_TOKEN: ${{ secrets.STATIC_BINARIES_RELEASER }}
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
path: main
filter: "blob:none" #https://github.blog/2020-12-21-get-up-to-speed-with-partial-clone-and-shallow-clone/
- name: Check Version
id: check_version
run: |
# Get latest version
export VERSION=$(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.tag_name' )
# If we get rate-limited, git clone the repo
if [ -z "$VERSION" ]; then
cd $(mktemp -d) && git clone https://github.com/ginuerzh/gost && cd gost
export VERSION=$(git tag --sort=-creatordate | head -n 1)
fi
# Export it to ENV
echo "VERSION=$VERSION" >> $GITHUB_ENV
# Get stored version
export STORED_VERSION=$(cat $GITHUB_WORKSPACE/main/gost/version.txt)
if [ "$VERSION" == "$STORED_VERSION" ]; then
echo "Version $VERSION is already Fetched & Updated"
echo "versions_same=true" >> $GITHUB_ENV
else
echo "Fetching... --> v$VERSION (from <-- v$STORED_VERSION)"
echo "versions_same=false" >> $GITHUB_ENV
fi
shell: bash
- name: Update Version
if: env.versions_same != 'true'
run: |
# Update version.txt with the latest version
echo $VERSION > $GITHUB_WORKSPACE/main/gost/version.txt
echo "Updated version.txt with the latest version $VERSION"
- name: Install CoreUtils
if: env.versions_same != 'true'
run: |
sudo apt-get update -y
sudo apt-get install -y --no-install-recommends bison build-essential ca-certificates flex file jq pkg-config qemu-user-static wget
- name: Setup Env
if: env.versions_same != 'true'
run: |
# Create Output Dir
mkdir -p "$GITHUB_WORKSPACE/main/gost"
#Fetch
- name: Fetch gost bins
if: env.versions_same != 'true'
run: |
#Download
set -x ; set +e
#-------------------------#
#FreeBSD
#amd_x86_64
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'freebsd-amd64')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_amd_x86_64_FreeBSD" \;
#386
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'freebsd-386')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_386_FreeBSD" \;
#-------------------------#
#Linux
#aarch64_arm64 || armv8
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-armv8')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_aarch64_arm64_Linux" \;
#amd64_x86_64
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-amd64')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_amd_x86_64_Linux" \;
#armv5
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-armv5')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_armv5_Linux" \;
#armv6
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-armv6')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_armv6_Linux" \;
#armv7
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-armv7')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_armv7_Linux" \;
#i386
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-386')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_i386_Linux" \;
#mips-hardfloat
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-mips-hardfloat')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_mips_hardfloat_Linux" \;
#mips-softfloat
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-mips-softfloat')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_mips_softfloat_Linux" \;
#mipsle-hardfloat
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-mipsle-hardfloat')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_mipsle_hardfloat_Linux" \;
#mipsle-softfloat
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-mipsle-softfloat')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_mipsle_softfloat_Linux" \;
#mips64
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-mips64' | grep -v 'mips64le')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_mips64_Linux" \;
#mips64le
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-mips64le')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_mips64le_Linux" \;
#riscv64
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-riscv64')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_riscv64_Linux" \;
#s390x
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'linux-s390x')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_s390x_Linux" \;
#-------------------------#
#macOS
#aarch64_arm64
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'darwin-arm64')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_aarch64_arm64_macOS" \;
#amd_x86_64
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'darwin-amd64')
find . -type f -name '*.gz' -exec gzip -d {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name 'gost*' ! -name '*.gz*' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_x86_64_macOS" \;
#Windows
#-------------------------#
#aarch64_arm64
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'windows-arm64')
find . -type f -name '*.zip*' -exec unzip -o {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name '*gost*.exe' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_aarch64_arm64_Windows.exe" \;
#amd_x86
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'windows-386')
find . -type f -name '*.zip*' -exec unzip -o {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name '*gost*.exe' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_amd_x86_Windows.exe" \;
#amd_x86_64
cd $(mktemp -d) && curl -qfLJO $(curl -qfsSL "https://api.github.com/repos/ginuerzh/gost/releases/latest" | jq -r '.assets[].browser_download_url' | grep -i 'windows-amd64')
find . -type f -name '*.zip*' -exec unzip -o {} \;
find . -type f -name 'gost*' -exec strip {} \; >/dev/null 2>&1
find . -type f -name '*gost*.exe' -exec mv {} "$GITHUB_WORKSPACE/main/gost/gost_amd_x86_64_Windows.exe" \;
#-------------------------#
#Any leftovers
set +x
continue-on-error: true
#Cleanup
- name: Cleanup >> Strip >> chmod
if: env.versions_same != 'true'
run: |
#Strip All Linux Bins
find "$GITHUB_WORKSPACE/main/gost/" -type f -name '*_Linux' -exec strip {} \; >/dev/null 2>&1
#chmod +xwr everything
find "$GITHUB_WORKSPACE/main/gost/" -type f -name 'gost*' -exec chmod +xwr {} \; >/dev/null 2>&1
continue-on-error: true
- name: Update README.md
if: env.versions_same != 'true'
run: |
cd "$GITHUB_WORKSPACE/main"
cat ./gost/INFO.md > ./gost/README.md
echo -e "" >> ./gost/README.md
echo '---' >> ./gost/README.md
echo '```console' >> ./gost/README.md
echo -e "" >> ./gost/README.md
echo -e "--> METATDATA" >> ./gost/README.md
/bin/bash -c 'PS4="$ "; file ./gost/gost* | grep -v '.txt' ' &>> ./gost/README.md
echo -e "" >> ./gost/README.md
echo -e "--> SHA256SUM" >> ./gost/README.md
/bin/bash -c 'PS4="$ ";sha256sum ./gost/gost* | grep -v '.txt' ' &>> ./gost/README.md
echo -e '```\n' >> ./gost/README.md
echo -e "" >> ./gost/README.md
echo '---' >> ./gost/README.md
echo -e "" >> ./gost/README.md
echo '- #### Sizes' >> ./gost/README.md
echo -e "" >> ./gost/README.md
echo '```console' >> ./gost/README.md
/bin/bash -c 'PS4="$ ";ls -lh ./gost/gost* | grep -v '.txt' | awk "{print \$5, \$9}" | column -t' &>> ./gost/README.md
echo '```' >> ./gost/README.md
echo -e "" >> ./gost/README.md
echo '---' >> ./gost/README.md
echo -e "" >> ./gost/README.md
echo '- #### Version' >> ./gost/README.md
echo '```console' >> ./gost/README.md
echo -e "" >> ./gost/README.md
/bin/bash -c 'PS4="$ "; set -x; ./gost/gost_amd_x86_64_Linux -V' &>> ./gost/README.md
echo -e "" >> ./gost/README.md
/bin/bash -c 'PS4="$ "; set -x; ./gost/gost_amd_x86_64_Linux -h' &>> ./gost/README.md
echo -e "" >> ./gost/README.md
echo -e "" >> ./gost/README.md
echo '```' >> ./gost/README.md
echo -e "" >> ./gost/README.md
echo '---' >> ./gost/README.md
echo -e "" >> ./gost/README.md
working-directory: main
continue-on-error: true
- name: Git Pull
run: |
cd "$GITHUB_WORKSPACE/main" && git pull origin main
continue-on-error: true
- name: Get DateTime
if: env.versions_same != 'true'
run: |
# Date Time
NEPALI_TIME=$(TZ='Asia/Kathmandu' date +'%Y-%m-%d (%I:%M:%S %p)')
echo "NEPALI_TIME=$NEPALI_TIME" >> $GITHUB_ENV
- uses: stefanzweifel/git-auto-commit-action@v5
with:
repository: ./main
commit_user_name: Azathothas # defaults to "github-actions[bot]"
commit_user_email: [email protected] # defaults to "41898282+github-actions[bot]@users.noreply.github.com"
commit_message: "βœ… Fetch gost Binaries πŸ“¦ <-- ${{ env.VERSION }} at ${{ env.NEPALI_TIME }} ⌚"
#push_options: '--force'
#Create a new Release & Publish
# Repo: https://github.com/softprops/action-gh-release
# Market-Place: https://github.com/marketplace/actions/gh-release
- name: Releaser
if: env.versions_same != 'true'
uses: softprops/[email protected]
with:
name: "gost ${{ env.VERSION }}"
tag_name: "gost_${{ env.VERSION }}"
prerelease: false
draft: false
generate_release_notes: false
token: "${{ secrets.GITHUB_TOKEN }}"
body: |
`Changelog`: _https://github.com/ginuerzh/gost/releases/tag/${{ env.VERSION }}_
`Install`: _https://github.com/Azathothas/Static-Binaries/tree/main/gost#install-gost_
files: |
${{github.workspace}}/main/gost/*.exe
${{github.workspace}}/main/gost/*_FreeBSD
${{github.workspace}}/main/gost/*_Linux
${{github.workspace}}/main/gost/*_macOS