summaryrefslogtreecommitdiffstats
path: root/.github/workflows/daily-build.yml
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2023-06-29 23:46:28 (GMT)
committerGitHub <noreply@github.com>2023-06-29 23:46:28 (GMT)
commitf4a3d2c80b24ccf1afb8c6ead7f5c4df4c360407 (patch)
treeab3177c2afe45db48f8415a2d2d3a447df232a25 /.github/workflows/daily-build.yml
parentd2e91ad50cedad8f7b3336720216afcdfb044314 (diff)
downloadhdf5-f4a3d2c80b24ccf1afb8c6ead7f5c4df4c360407.zip
hdf5-f4a3d2c80b24ccf1afb8c6ead7f5c4df4c360407.tar.gz
hdf5-f4a3d2c80b24ccf1afb8c6ead7f5c4df4c360407.tar.bz2
Hdf5 1 14 release action (#3198)
* Update actions for release option, fix branch for daily build * Scheduled workflows run on latest commit on the develop
Diffstat (limited to '.github/workflows/daily-build.yml')
-rw-r--r--.github/workflows/daily-build.yml11
1 files changed, 8 insertions, 3 deletions
diff --git a/.github/workflows/daily-build.yml b/.github/workflows/daily-build.yml
index f4dbab2..6f7655b 100644
--- a/.github/workflows/daily-build.yml
+++ b/.github/workflows/daily-build.yml
@@ -3,8 +3,6 @@ name: hdf5 1.14 daily build
# Controls when the action will run. Triggers the workflow on a schedule
on:
workflow_dispatch:
- schedule:
- - cron: "6 0 * * *"
permissions:
contents: read
@@ -14,22 +12,29 @@ permissions:
jobs:
call-workflow-tarball:
uses: ./.github/workflows/tarball.yml
+ with:
+ #use_tag: snapshot-1.14
+ use_environ: snapshots
call-workflow-ctest:
needs: call-workflow-tarball
uses: ./.github/workflows/cmake-ctest.yml
with:
file_base: ${{ needs.call-workflow-tarball.outputs.file_base }}
+ #use_tag: snapshot-1.14
+ #use_environ: snapshots
if: ${{ needs.call-workflow-tarball.outputs.has_changes == 'true' }}
call-workflow-release:
needs: [call-workflow-tarball, call-workflow-ctest]
permissions:
contents: write # In order to allow tag creation
- uses: ./.github/workflows/release.yml
+ uses: ./.github/workflows/release-files.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 }}
+ use_tag: snapshot-1.14
+ use_environ: snapshots
if: ${{ needs.call-workflow-tarball.outputs.has_changes == 'true' }}