-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (68 loc) · 1.65 KB
/
run_publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: run publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CHACHA_KEY: ${{ secrets.CHACHA_KEY }}
CARGO_LOCA: "kingsbur-core/Cargo.toml"
CARGO_BIN: "cli"
permissions:
contents: write
on:
workflow_dispatch:
inputs:
addr:
description: addr
required: true
type: string
default: "0"
vec:
description: vec
required: true
type: string
default: "0 0 0"
jobs:
pre:
runs-on: ubuntu-latest
outputs:
cargo_loc: ${{ env.CARGO_LOCA }}
cargo_bin: ${{ env.CARGO_BIN }}
steps:
- run: echo "Bypass Restriction"
cli:
runs-on: "ubuntu-latest"
outputs:
ref: ${{ steps.post.outputs.ref }}
steps:
-
name: Checkout
uses: actions/checkout@v3
-
run: |
sudo apt-get -qq install chromium-driver tmux
shell: bash
name: Install Chrome
-
run: |
curl -fsSL https://sh.rustup.rs | bash -s -- -y
source ~/.bashrc
shell: bash
name: Install Rust
-
id: post
run: |
tmux new-session -d -s chromedriver
tmux send-keys -t chromedriver 'chromedriver --port=9515' Enter
cargo build --release
{
./target/release/cli post ${{ inputs.addr }} ${{ inputs.vec }}
} >> $GITHUB_OUTPUT
shell: bash
name: Build and Run cli
publish:
needs:
- pre
- cli
uses: ./.github/workflows/bot.yml
with:
cargo_loc: ${{ needs.pre.outputs.cargo_loc }}
cargo_bin: ${{ needs.pre.outputs.cargo_bin }}
note: ${{ needs.cli.outputs.ref }}