We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7135b3a commit 45ee88aCopy full SHA for 45ee88a
.github/workflows/ci.yml
@@ -1,6 +1,8 @@
1
name: CI/CD
2
on:
3
push:
4
+ branches:
5
+ - "*"
6
tags:
7
- "v*"
8
schedule:
@@ -21,6 +23,7 @@ jobs:
21
23
run: |
22
24
test ! -z "$(ls -A ./result)"
25
push-to-registries:
26
+ if: ${{ startsWith(github.ref, 'refs/tags/v') || github.event_name == 'schedule' }}
27
name: Push Docker image to multiple registries
28
runs-on: ubuntu-latest
29
needs:
@@ -74,7 +77,7 @@ jobs:
74
77
tags: ${{ steps.meta.outputs.tags }}
75
78
labels: ${{ steps.meta.outputs.labels }}
76
79
update-gh-pages:
- if: startsWith(github.ref, 'refs/tags/v')
80
+ if: ${{ startsWith(github.ref, 'refs/tags/v') }}
81
name: Generate and upload new GitHub Pages
82
83
0 commit comments