Build nightly release based on 'nightly' tag, not any tag w/ nightly prefix
This commit is contained in:
parent
bf324c152b
commit
ee753beebd
3 changed files with 7 additions and 9 deletions
8
.github/actions/run_tests/action.yml
vendored
8
.github/actions/run_tests/action.yml
vendored
|
@ -32,11 +32,3 @@ runs:
|
||||||
RUSTFLAGS: -D warnings
|
RUSTFLAGS: -D warnings
|
||||||
shell: bash -euxo pipefail {0}
|
shell: bash -euxo pipefail {0}
|
||||||
run: cargo nextest run --workspace --no-fail-fast
|
run: cargo nextest run --workspace --no-fail-fast
|
||||||
|
|
||||||
- name: Build collab
|
|
||||||
shell: bash -euxo pipefail {0}
|
|
||||||
run: cargo build -p collab
|
|
||||||
|
|
||||||
- name: Build other binaries
|
|
||||||
shell: bash -euxo pipefail {0}
|
|
||||||
run: cargo build --workspace --bins --all-features
|
|
||||||
|
|
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
@ -48,6 +48,12 @@ jobs:
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
uses: ./.github/actions/run_tests
|
uses: ./.github/actions/run_tests
|
||||||
|
|
||||||
|
- name: Build collab
|
||||||
|
run: cargo build -p collab
|
||||||
|
|
||||||
|
- name: Build other binaries
|
||||||
|
run: cargo build --workspace --bins --all-features
|
||||||
|
|
||||||
bundle:
|
bundle:
|
||||||
name: Bundle app
|
name: Bundle app
|
||||||
runs-on:
|
runs-on:
|
||||||
|
|
2
.github/workflows/release_nightly.yml
vendored
2
.github/workflows/release_nightly.yml
vendored
|
@ -6,7 +6,7 @@ on:
|
||||||
- cron: "0 1 * * *"
|
- cron: "0 1 * * *"
|
||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
- "nightly*"
|
- "nightly"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue