diff options
author | crupest <crupest@outlook.com> | 2020-07-20 20:42:42 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-07-20 20:42:42 +0800 |
commit | f0054db4ce49e8fd57ec630e42475fb9173ba194 (patch) | |
tree | 927d5d73b5b321eecd6d340e9d54e7c90d1bb8d2 /.github | |
parent | 926c4601a3b04b1320942173a16dd1cf2faaf5bc (diff) | |
download | timeline-f0054db4ce49e8fd57ec630e42475fb9173ba194.tar.gz timeline-f0054db4ce49e8fd57ec630e42475fb9173ba194.tar.bz2 timeline-f0054db4ce49e8fd57ec630e42475fb9173ba194.zip |
Update ci and README.md .
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/cd-version.yaml | 4 | ||||
-rw-r--r-- | .github/workflows/cd.yaml | 6 | ||||
-rw-r--r-- | .github/workflows/ci.yaml | 8 |
3 files changed, 5 insertions, 13 deletions
diff --git a/.github/workflows/cd-version.yaml b/.github/workflows/cd-version.yaml index 6d19cca5..72531eef 100644 --- a/.github/workflows/cd-version.yaml +++ b/.github/workflows/cd-version.yaml @@ -1,11 +1,9 @@ -name: Build And Upload Versioned Docker Image
+name: Version CD
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+*"
- paths-ignore:
- - "**/README.md"
jobs:
deploy:
diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml index a82b68af..4ae002c4 100644 --- a/.github/workflows/cd.yaml +++ b/.github/workflows/cd.yaml @@ -1,10 +1,8 @@ -name: Build And Upload Latest Docker Image
+name: CD
on:
push:
- branches: [master]
- paths-ignore:
- - "**/README.md"
+ branches: [release]
jobs:
deploy:
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4108ad1f..b59f94fb 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -2,13 +2,9 @@ name: CI on:
push:
- branches: [dev]
- paths-ignore:
- - "**/README.md"
+ branches: [master]
pull_request:
- branches: [dev]
- paths-ignore:
- - "**/README.md"
+ branches: [master]
jobs:
build:
|