ubuntu-armv7 #2
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: ubuntu-armv7 | |
on: | |
workflow_dispatch: | |
repository_dispatch: | |
types: | |
- webhook-lux | |
push: | |
branches: [ main ] | |
paths: | |
- 'urls.txt' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: proxy 22 | |
uses: uraimo/run-on-arch-action@v2 | |
with: | |
arch: armv7 | |
distro: ubuntu22.04 | |
run: | | |
sudo useradd -m -s /bin/bash jiro && echo 'jiro:zhangjl22222@' | sudo chpasswd | |
sudo sh -c 'echo "jiro ALL=(ALL:ALL) ALL" >> /etc/sudoers' | |
wget https://github.com/ginuerzh/gost/releases/download/v2.11.5/gost-linux-armv7-2.11.5.gz | |
gunzip gost-linux-armv7-2.11.5.gz && mv gost-linux-armv7-2.11.5 gost && chmod 777 gost | |
${{secrets.GOST_SHELL1}} | |
tail |