summaryrefslogtreecommitdiffstats
path: root/.github/workflows/daily-build.yml
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2023-06-29 20:40:27 (GMT)
committerGitHub <noreply@github.com>2023-06-29 20:40:27 (GMT)
commited9791f1ce63e12348bba827ec5d090a6a4255c8 (patch)
tree58586db943ae35038de671e678d6e119166c4004 /.github/workflows/daily-build.yml
parent7196d1e4c2a59509b6274c41b068ab89d63a3336 (diff)
downloadhdf5-ed9791f1ce63e12348bba827ec5d090a6a4255c8.zip
hdf5-ed9791f1ce63e12348bba827ec5d090a6a4255c8.tar.gz
hdf5-ed9791f1ce63e12348bba827ec5d090a6a4255c8.tar.bz2
Update actions for release option, fix branch for daily build (#3185)
* Update actions for release option, fix branch for daily build * Scheduled workflows run on latest commit on the develop * Add snapshots location
Diffstat (limited to '.github/workflows/daily-build.yml')
-rw-r--r--.github/workflows/daily-build.yml9
1 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/daily-build.yml b/.github/workflows/daily-build.yml
index ec35e10..5633b3c 100644
--- a/.github/workflows/daily-build.yml
+++ b/.github/workflows/daily-build.yml
@@ -14,22 +14,29 @@ permissions:
jobs:
call-workflow-tarball:
uses: ./.github/workflows/tarball.yml
+ with:
+ #use_tag: snapshot
+ 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
+ #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
+ use_environ: snapshots
if: ${{ needs.call-workflow-tarball.outputs.has_changes == 'true' }}