summaryrefslogtreecommitdiffstats
path: root/.github/workflows/release.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r--.github/workflows/release.yml75
1 files changed, 12 insertions, 63 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 07e3f40..25239a4 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -27,88 +27,37 @@ jobs:
TAG: ${{ inputs.use_tag }}
run: echo "RELEASE_TAG=$TAG" >> $GITHUB_OUTPUT
-# tarball.yml will be used for releases when pre-tag actions are implemented
-# call-workflow-tarball:
-# needs: log-the-inputs
-# uses: ./.github/workflows/tarball.yml
-# with:
-# use_tag: ${{ inputs.use_tag }}
-# use_environ: release
-
- create-files-ctest:
+ call-workflow-tarball:
needs: log-the-inputs
- runs-on: ubuntu-latest
- outputs:
- file_base: ${{ steps.set-file-base.outputs.FILE_BASE }}
- steps:
- - name: Set file base name
- id: set-file-base
- run: |
- FILE_NAME_BASE=$(echo "${{ needs.log-the-inputs.outputs.rel_tag }}")
- echo "FILE_BASE=$FILE_NAME_BASE" >> $GITHUB_OUTPUT
- shell: bash
-
- # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- - name: Get Sources
- uses: actions/checkout@v4.1.1
- with:
- path: hdfsrc
-
- - name: Zip Folder
- run: |
- zip -r ${{ steps.set-file-base.outputs.FILE_BASE }}.zip ./hdfsrc
- tar -zcvf ${{ steps.set-file-base.outputs.FILE_BASE }}.tar.gz ./hdfsrc
-
- - name: List files in the repository
- run: |
- ls -l ${{ github.workspace }}
- ls $GITHUB_WORKSPACE
-
- # Save files created by release script
- - name: Save tgz-tarball
- uses: actions/upload-artifact@v4
- with:
- name: tgz-tarball
- path: ${{ steps.set-file-base.outputs.FILE_BASE }}.tar.gz
- if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`
-
- - name: Save zip-tarball
- uses: actions/upload-artifact@v4
- with:
- name: zip-tarball
- path: ${{ steps.set-file-base.outputs.FILE_BASE }}.zip
- if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`
-
- - name: Save NEWSLETTER
- uses: actions/upload-artifact@v4
- with:
- name: NEWSLETTER
- path: ./hdfsrc/release_docs/NEWSLETTER.txt
- if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`
+ uses: ./.github/workflows/tarball.yml
+ with:
+# use_tag: ${{ inputs.use_tag }}
+ use_environ: release
call-workflow-ctest:
- needs: create-files-ctest
+ needs: call-workflow-tarball
uses: ./.github/workflows/cmake-ctest.yml
with:
- file_base: ${{ needs.create-files-ctest.outputs.file_base }}
+ file_base: ${{ needs.call-workflow-tarball.outputs.file_base }}
preset_name: ci-StdShar
+ use_environ: release
call-workflow-abi:
- needs: [log-the-inputs, create-files-ctest, call-workflow-ctest]
+ needs: [log-the-inputs, call-workflow-tarball, call-workflow-ctest]
uses: ./.github/workflows/abi-report.yml
with:
file_ref: '1_14_3'
- file_base: ${{ needs.create-files-ctest.outputs.file_base }}
+ file_base: ${{ needs.call-workflow-tarball.outputs.file_base }}
use_tag: ${{ needs.log-the-inputs.outputs.rel_tag }}
use_environ: release
call-workflow-release:
- needs: [log-the-inputs, create-files-ctest, call-workflow-ctest, call-workflow-abi]
+ needs: [log-the-inputs, call-workflow-tarball, call-workflow-ctest, call-workflow-abi]
permissions:
contents: write # In order to allow tag creation
uses: ./.github/workflows/release-files.yml
with:
- file_base: ${{ needs.create-files-ctest.outputs.file_base }}
+ file_base: ${{ needs.call-workflow-tarball.outputs.file_base }}
file_branch: ${{ needs.log-the-inputs.outputs.rel_tag }}
file_sha: ${{ needs.log-the-inputs.outputs.rel_tag }}
use_tag: ${{ needs.log-the-inputs.outputs.rel_tag }}