summaryrefslogtreecommitdiffstats
path: root/.github/workflows/daily-build.yml
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2023-05-25 17:24:54 (GMT)
committerGitHub <noreply@github.com>2023-05-25 17:24:54 (GMT)
commit018ca4e37f52e13db5e72926ad2827460eec9cdd (patch)
treee2af4e24964175ace5663de1e8d22f5981d10045 /.github/workflows/daily-build.yml
parent27eee8330a30bbab3c29d5d463cd8efa8bf04020 (diff)
downloadhdf5-018ca4e37f52e13db5e72926ad2827460eec9cdd.zip
hdf5-018ca4e37f52e13db5e72926ad2827460eec9cdd.tar.gz
hdf5-018ca4e37f52e13db5e72926ad2827460eec9cdd.tar.bz2
Develop release workflow (#3002)
Implement (pre)release workflow for daily build
Diffstat (limited to '.github/workflows/daily-build.yml')
-rw-r--r--.github/workflows/daily-build.yml12
1 files changed, 9 insertions, 3 deletions
diff --git a/.github/workflows/daily-build.yml b/.github/workflows/daily-build.yml
index 04e52ac..265a6c3 100644
--- a/.github/workflows/daily-build.yml
+++ b/.github/workflows/daily-build.yml
@@ -6,9 +6,6 @@ on:
schedule:
- cron: "6 0 * * *"
-permissions:
- contents: read
-
# A workflow run is made up of one or more jobs that can run sequentially or
# in parallel.
jobs:
@@ -22,3 +19,12 @@ jobs:
file_base: ${{ needs.call-workflow-tarball.outputs.file_base }}
if: ${{ needs.call-workflow-tarball.outputs.has_changes == 'true' }}
+ call-workflow-release:
+ needs: [call-workflow-tarball, call-workflow-ctest]
+ uses: ./.github/workflows/release.yml
+ with:
+ file_base: ${{ needs.call-workflow-tarball.outputs.file_base }}
+ file_branch: ${{ needs.call-workflow-tarball.outputs.file_branch }}
+ file_sha: ${{ needs.call-workflow-tarball.outputs.file_sha }}
+ if: ${{ needs.call-workflow-tarball.outputs.has_changes == 'true' }}
+