aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/release.yaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index b6d8a246a..8100c04ef 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -1,7 +1,7 @@
1name: release 1name: release
2on: 2on:
3 schedule: 3 schedule:
4 - cron: '0 0 * * *' # midnight UTC 4 - cron: '*/15 * * * *' # midnight UTC
5 5
6 push: 6 push:
7 branches: 7 branches:
@@ -73,7 +73,7 @@ jobs:
73 - run: echo "::set-env name=TAG::$(date --iso)" 73 - run: echo "::set-env name=TAG::$(date --iso)"
74 if: github.event_name == 'push' 74 if: github.event_name == 'push'
75 - run: echo "::set-env name=TAG::nightly" 75 - run: echo "::set-env name=TAG::nightly"
76 if: github.event_name != 'push' 76 if: github.event_name == 'schedule'
77 - run: 'echo "TAG: $TAG"' 77 - run: 'echo "TAG: $TAG"'
78 78
79 - name: Checkout repository 79 - name: Checkout repository