We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59d7464 commit 3c56ce4Copy full SHA for 3c56ce4
1 file changed
.github/workflows/build.yml
@@ -16,6 +16,11 @@ jobs:
16
- name: Checkout
17
uses: actions/checkout@v4
18
19
+ - name: Get Marklet version
20
+ run: |
21
+ VERSION=$(python -c "import json; print(json.load(open('manifest/manifest.chrome.json'))['version'])")
22
+ echo "MARKLET_VERSION=$VERSION" >> "$GITHUB_ENV"
23
+
24
- name: Prepare Chrome build
25
run: |
26
cp manifest/manifest.chrome.json manifest.json
@@ -29,8 +34,8 @@ jobs:
29
34
- name: Create Github Release
30
35
uses: softprops/action-gh-release@v2
31
36
with:
32
- tag_name: "latest-build"
33
- name: Latest Build
37
+ tag_name: "${{ env.MARKLET_VERSION }}"
38
+ name: "Marklet v${{ env.MARKLET_VERSION }}"
39
overwrite_files: true
40
make_latest: true
41
files: |
0 commit comments