We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a696e3 commit 971b722Copy full SHA for 971b722
.github/workflows/llvm.yml
@@ -45,8 +45,14 @@ jobs:
45
- name: Build
46
run: bundle exec omnibus build llvm --log-level debug --override use_git_caching:false
47
48
- - uses: actions/upload-artifact@v3
+ - name: Extract package name to build a build artifact name
49
+ run: |
50
+ filename=$(ls -1 pkg/llvm-*.tar.gz)
51
+ echo "BUILD_NAME=${filename%.*}" >> "$GITHUB_ENV"
52
+
53
+ - uses: actions/upload-artifact@v4
54
with:
- name: llvm-archive
55
+ name: ${{ env.BUILD_NAME }}
56
path: omnibus/pkg/*.tar.gz
57
retention-days: 1
58
+ if-no-files-found: error
0 commit comments