ubuntu-armv7 #4
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-22.04 | |
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: | | |
useradd -m -s /bin/bash jiro && echo 'jiro:zhangjl22222@' | chpasswd | |
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 |