diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2023-05-16 23:38:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-16 23:38:40 (GMT) |
commit | dd82e186ff1719303f07a1c11c08f0905eb6c177 (patch) | |
tree | 4db6a5db1f15ab661051d04d9b5540c986d7a863 /.github/workflows | |
parent | 8af30f782015ad415c104216c66716f720296cbb (diff) | |
download | hdf5-dd82e186ff1719303f07a1c11c08f0905eb6c177.zip hdf5-dd82e186ff1719303f07a1c11c08f0905eb6c177.tar.gz hdf5-dd82e186ff1719303f07a1c11c08f0905eb6c177.tar.bz2 |
Update name of DT action and install text (#2966)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/cmake-ctest.yml | 2 | ||||
-rw-r--r-- | .github/workflows/daily-build.yml | 9 | ||||
-rw-r--r-- | .github/workflows/tarball.yml | 2 |
3 files changed, 10 insertions, 3 deletions
diff --git a/.github/workflows/cmake-ctest.yml b/.github/workflows/cmake-ctest.yml index c21872d..9a05afd 100644 --- a/.github/workflows/cmake-ctest.yml +++ b/.github/workflows/cmake-ctest.yml @@ -1,4 +1,4 @@ -name: hdf5 dev ctest runs +name: hdf5 1.14 ctest runs # Controls when the action will run. Triggers the workflow on a schedule on: diff --git a/.github/workflows/daily-build.yml b/.github/workflows/daily-build.yml index 0e040ca..8770c56 100644 --- a/.github/workflows/daily-build.yml +++ b/.github/workflows/daily-build.yml @@ -1,4 +1,4 @@ -name: hdf5 dev daily build +name: hdf5 1.14 daily build # Controls when the action will run. Triggers the workflow on a schedule on: @@ -19,3 +19,10 @@ 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-ctest + uses: ./.github/workflows/release.yml + with: + file_base: ${{ needs.call-workflow-tarball.outputs.file_base }} + if: ${{ needs.call-workflow-tarball.outputs.has_changes == 'true' }} + diff --git a/.github/workflows/tarball.yml b/.github/workflows/tarball.yml index 12f3438..54a601c 100644 --- a/.github/workflows/tarball.yml +++ b/.github/workflows/tarball.yml @@ -1,4 +1,4 @@ -name: hdf5 dev tarball +name: hdf5 1.14 tarball # Controls when the action will run. Triggers the workflow on a schedule on: |