aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/release.yaml
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-03-05 09:45:40 +0000
committerAleksey Kladov <[email protected]>2020-03-05 09:45:40 +0000
commite15cef70db98681dc82201e6054cc89283e093e0 (patch)
tree60c1f2954aad84376a60b16f2f79d23f0cd46a27 /.github/workflows/release.yaml
parent5f1fc945235972f820cc96400e4c70d211a4042e (diff)
Try testing release workflow
Diffstat (limited to '.github/workflows/release.yaml')
-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