We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b97a94 commit b7b3ce4Copy full SHA for b7b3ce4
.github/workflows/ccpp.yml
@@ -51,3 +51,16 @@ jobs:
51
- name: make check-enzyme-integration
52
working-directory: build
53
run: make -j `nproc` check-enzyme-integration
54
+
55
+ - name: Update Nightly Release
56
+ uses: ncipollo/release-action@v1
57
+ if: ${{ !cancelled() && github.ref == 'refs/heads/main' }}
58
+ with:
59
+ tag: nightly
60
+ name: Nightly Release
61
+ body: "Latest nightly build of Enzyme."
62
+ artifacts: "build/Enzyme/LLVMEnzyme-${{ matrix.llvm }}*,build/Enzyme/ClangEnzyme-${{ matrix.llvm }},build/Enzyme/LLDEnzyme-${{ matrix.llvm }}"
63
+ allowUpdates: true
64
+ removeArtifacts: false
65
+ replacesArtifacts: true
66
+ token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments