Skip to content

Commit fcda738

Browse files
authored
Fix paths (#266)
1 parent 7adf5e1 commit fcda738

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
needs: [log-the-inputs, call-workflow-tarball]
6060
uses: ./.github/workflows/ant.yml
6161
with:
62-
file_base: ${{ needs.create-files-ant.outputs.file_base }}
62+
file_base: ${{ needs.call-workflow-tarball.outputs.file_base }}
6363
use_hdf: ${{ needs.log-the-inputs.outputs.rel4_tag }}
6464
use_hdf5: ${{ needs.log-the-inputs.outputs.rel5_tag }}
6565
name_hdf5: ${{ inputs.name_tag5 }}
@@ -74,7 +74,7 @@ jobs:
7474
needs: [log-the-inputs, call-workflow-tarball]
7575
uses: ./.github/workflows/ant-app.yml
7676
with:
77-
file_base: ${{ needs.create-files-ant.outputs.file_base }}
77+
file_base: ${{ needs.call-workflow-tarball.outputs.file_base }}
7878
use_hdf: ${{ needs.log-the-inputs.outputs.rel4_tag }}
7979
use_hdf5: ${{ needs.log-the-inputs.outputs.rel5_tag }}
8080
name_hdf5: ${{ inputs.name_tag5 }}

.github/workflows/tarball.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100

101101
- name: Read VERSION file
102102
id: getversion
103-
run: echo "version=$(cat VERSION)" >> $GITHUB_OUTPUT
103+
run: echo "version=$(cat hdfsrc/VERSION)" >> $GITHUB_OUTPUT
104104

105105
- name: Retrieve version
106106
id: version

0 commit comments

Comments
 (0)