summaryrefslogtreecommitdiffstats
path: root/.github/workflows/daily-build.yml
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2023-06-30 01:09:29 (GMT)
committerGitHub <noreply@github.com>2023-06-30 01:09:29 (GMT)
commit30da5a24b08e88b49c8f6ff7be1a1d9c50cd98b1 (patch)
tree6eeb6dc72827226a568084d4be285b20e8a78667 /.github/workflows/daily-build.yml
parent36cb3a9e2a5e41d07d789d880198dc95a47f6f05 (diff)
downloadhdf5-30da5a24b08e88b49c8f6ff7be1a1d9c50cd98b1.zip
hdf5-30da5a24b08e88b49c8f6ff7be1a1d9c50cd98b1.tar.gz
hdf5-30da5a24b08e88b49c8f6ff7be1a1d9c50cd98b1.tar.bz2
Hdf5 1 12 release action (#3199)
* 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 8151781..d371e0e 100644
--- a/.github/workflows/daily-build.yml
+++ b/.github/workflows/daily-build.yml
@@ -3,8 +3,6 @@ name: hdf5 1.12 daily build
# Controls when the action will run. Triggers the workflow on a schedule
on:
workflow_dispatch:
- schedule:
- - cron: "8 0 * * *"
permissions:
contents: read
@@ -14,22 +12,29 @@ permissions:
jobs:
call-workflow-tarball:
uses: ./.github/workflows/tarball.yml
+ with:
+ #use_tag: snapshot-1.12
+ 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.12
+ #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.12
+ use_environ: snapshots
if: ${{ needs.call-workflow-tarball.outputs.has_changes == 'true' }}