-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (36 loc) · 912 Bytes
/
pkg_script.yml
File metadata and controls
40 lines (36 loc) · 912 Bytes
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
name: "dash-script"
on:
workflow_dispatch:
push:
paths:
- pkgs/script/**
- pkgs/types/**
- Cargo.lock
- Cargo.toml
- .github/workflows/pkg_script.yml
- .github/workflows/build_stable.yml
- .github/workflows/build_nightly.yml
pull_request:
paths:
- pkgs/script/**
- pkgs/types/**
- Cargo.lock
- Cargo.toml
- .github/workflows/pkg_script.yml
- .github/workflows/build_stable.yml
- .github/workflows/build_nightly.yml
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
stable:
uses: ./.github/workflows/build_stable.yml
with:
package: dash-script
package_dir: script
nightly:
uses: ./.github/workflows/build_nightly.yml
with:
package: dash-script
package_dir: script
secrets: inherit