File tree 2 files changed +21
-11
lines changed
2 files changed +21
-11
lines changed Original file line number Diff line number Diff line change 13
13
runs-on : ubuntu-latest
14
14
steps :
15
15
- uses : actions/checkout@v3
16
- with :
17
- ssh-key : ${{ secrets.SSH_PRIVATE_KEY }}
18
- submodules : true
19
- fetch-depth : " 0"
20
16
- uses : awalsh128/cache-apt-pkgs-action@latest
21
17
with :
22
18
packages : make fonts-noto-cjk fonts-noto-cjk-extra
40
36
export RUST_LOG=DEBUG
41
37
nix develop --impure --command bash -c "cargo run -- config.toml -o example/vscode_plugins.nix"
42
38
cat example/vscode_plugins.nix
43
- # nix develop --impure --command bash -c "cd example && nix flake update"
44
39
nix develop --impure --command bash -c "cd example && nix develop --build"
45
- # - uses: EndBug/add-and-commit@v9 # You can change this to use a specific version.
46
- # with:
47
- # author_name: DragonBillow
48
-
49
- # commit: --signoff
50
- # message: "feat(vscode): Update nix lock."
Original file line number Diff line number Diff line change
1
+ name : " nightly"
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ pull_request :
6
+ push :
7
+ schedule :
8
+ - cron : " 0 5 * * 1-5"
9
+
10
+ permissions :
11
+ contents : write
12
+
13
+ jobs :
14
+ nightly_build :
15
+ runs-on : ubuntu-latest
16
+ steps :
17
+ - uses : actions/checkout@v3
18
+ - uses : actions-rs/toolchain@v1
19
+ with :
20
+ toolchain : nightly
21
+ - run : cargo +nightly build
You can’t perform that action at this time.
0 commit comments