We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd76d54 commit b16549eCopy full SHA for b16549e
.github/workflows/release.yml
@@ -12,6 +12,9 @@ on:
12
required: true
13
type: string
14
15
+env:
16
+ OUTPUT: ${{ github.workspace }}/output
17
+
18
jobs:
19
run:
20
name: ${{ matrix.earthfile }}
@@ -30,7 +33,7 @@ jobs:
30
33
id: run
31
34
uses: ./forge/actions/run
32
35
with:
- artifact: artifacts-out
36
+ artifact: ${{ env.OUTPUT }}
37
path: ${{ matrix.earthfile }}
38
- name: Get project and artifacts
39
id: artifact
@@ -48,10 +51,12 @@ jobs:
48
51
exit 1
49
52
fi
50
53
54
+ ls -l ${{ env.OUTPUT }}
55
56
echo "project=$PROJECT" >> $GITHUB_OUTPUT
57
- name: Release
58
uses: ./forge/actions/release
59
if: startsWith(github.ref, 'refs/tags/')
60
- path: artifacts-out
61
+ path: ${{ env.OUTPUT }}
62
project: ${{ steps.artifact.outputs.project }}
0 commit comments