We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9c3c541 + 42b46e2 commit 0716482Copy full SHA for 0716482
1 file changed
.github/workflows/build.yml
@@ -44,7 +44,23 @@ jobs:
44
name: extension-jar
45
path: build/libs/*.jar
46
retention-days: 30
47
-
+
48
+ - name: Update latest release with build
49
+ if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master')
50
+ uses: ncipollo/release-action@v1
51
+ with:
52
+ tag: latest
53
+ name: Latest build
54
+ artifacts: build/libs/*.jar
55
+ allowUpdates: true
56
+ replacesArtifacts: true
57
+ body: |
58
+ ## Latest Web Cache Deception Scanner build
59
60
+ Built automatically from `${{ github.ref_name }}` at `${{ github.sha }}`.
61
62
+ Download the attached `web-cache-deception-scanner-all.jar` to install the most recent extension in Burp Suite.
63
64
- name: Create Release
65
if: startsWith(github.ref, 'refs/tags/v')
66
uses: softprops/action-gh-release@v1
0 commit comments