-
Notifications
You must be signed in to change notification settings - Fork 1
59 lines (48 loc) · 1.59 KB
/
update.yaml
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
name: Publish
on:
workflow_dispatch:
push:
branches:
- main
schedule:
- cron: '0 0 * * *' # midnight UTC
env:
CARGO_TERM_COLOR: always
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: rustfmt
- name: Install deps
run: |
sudo apt update
sudo apt install --yes gcc pkg-config libssl-dev
- name: Install cargo play
run: cargo install cargo-play
- name: Install cargo make
run: cargo install cargo-make
- name: Download the list and run tests
run: cargo make test
- name: Publish
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
shell: bash
run: |
cargo doc --all-features
git config --local user.email "actions@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git remote add upstream https://rushmorem:${{ secrets.GITHUB_TOKEN }}@github.com/addr-rs/psl.git
git add data/rules.txt src/list.rs
git commit -m 'update the list'
cargo install --force --version 0.3.30 release-plz
/home/runner/.cargo/bin/release-plz update --no-changelog --verbose
git add Cargo.toml
git commit -m 'bump version'
/home/runner/.cargo/bin/release-plz release --verbose