mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -06:00
docs and scripts
This commit is contained in:
parent
ee2bda24e7
commit
402154e4c7
7
.github/workflows/build.yml
vendored
7
.github/workflows/build.yml
vendored
@ -1,10 +1,13 @@
|
|||||||
name: build
|
name: build
|
||||||
|
|
||||||
|
# This workflow should run for any push or pull request which is neither
|
||||||
|
# a preview build nor a release build.
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
paths:
|
paths:
|
||||||
- "!RELEASENOTES.md"
|
- "!RELEASE_NOTES.md"
|
||||||
- "!PRERELEASE_NOTES.md"
|
- "!PREVIEW_NOTES.md"
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
5
.github/workflows/preview.yml
vendored
5
.github/workflows/preview.yml
vendored
@ -1,5 +1,10 @@
|
|||||||
name: prerelease
|
name: prerelease
|
||||||
|
|
||||||
|
# This workflow should run for any push which is a preview build.
|
||||||
|
# Preview builds are indicated with changes to PREVIEW_NOTES.md.
|
||||||
|
# In order to effect this, you can do the following:
|
||||||
|
# scripts/release-notes.sh > PREVIEW_NOTES.md
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
|
7
.github/workflows/release.yml
vendored
7
.github/workflows/release.yml
vendored
@ -1,11 +1,16 @@
|
|||||||
name: release
|
name: release
|
||||||
|
|
||||||
|
# This workflow should run for any push which is a preview build.
|
||||||
|
# Preview builds are indicated with changes to PREVIEW_NOTES.md.
|
||||||
|
# In order to effect this, you can do the following:
|
||||||
|
# scripts/release-notes.sh > RELEASE_NOTES.md
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
paths:
|
paths:
|
||||||
- RELEASENOTES.**
|
- RELEASE_NOTES.**
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
release:
|
release:
|
||||||
|
2
scripts/trigger_preview_build.sh
Normal file
2
scripts/trigger_preview_build.sh
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
scripts/release-notes.sh > PREVIEW_NOTES.md
|
2
scripts/trigger_release_build.sh
Normal file
2
scripts/trigger_release_build.sh
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
scripts/release-notes.sh > RELEASE_NOTES.md
|
Loading…
Reference in New Issue
Block a user