Skip to content

Commit b16549e

Browse files
committed
wip: fix
1 parent dd76d54 commit b16549e

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/release.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ on:
1212
required: true
1313
type: string
1414

15+
env:
16+
OUTPUT: ${{ github.workspace }}/output
17+
1518
jobs:
1619
run:
1720
name: ${{ matrix.earthfile }}
@@ -30,7 +33,7 @@ jobs:
3033
id: run
3134
uses: ./forge/actions/run
3235
with:
33-
artifact: artifacts-out
36+
artifact: ${{ env.OUTPUT }}
3437
path: ${{ matrix.earthfile }}
3538
- name: Get project and artifacts
3639
id: artifact
@@ -48,10 +51,12 @@ jobs:
4851
exit 1
4952
fi
5053
54+
ls -l ${{ env.OUTPUT }}
55+
5156
echo "project=$PROJECT" >> $GITHUB_OUTPUT
5257
- name: Release
5358
uses: ./forge/actions/release
5459
if: startsWith(github.ref, 'refs/tags/')
5560
with:
56-
path: artifacts-out
61+
path: ${{ env.OUTPUT }}
5762
project: ${{ steps.artifact.outputs.project }}

0 commit comments

Comments
 (0)