1
0
Fork 0
mirror of https://github.com/zigzap/zap.git synced 2025-10-20 23:24:09 +00:00

add static pkghash exe to workflow

This commit is contained in:
Rene Schallner 2023-05-22 02:15:06 +02:00
parent d624263e81
commit 9938667ad1
5 changed files with 10 additions and 10 deletions

View file

@ -28,13 +28,13 @@ jobs:
run: | run: |
echo "::set-output name=version::${GITHUB_REF#refs/tags/}" echo "::set-output name=version::${GITHUB_REF#refs/tags/}"
- uses: goto-bus-stop/setup-zig@v2 # - uses: goto-bus-stop/setup-zig@v2
with: # with:
version: master # version: master
- name: Check zig version # - name: Check zig version
run: zig version # run: zig version
- name: Build pkghash tool # - name: Build pkghash tool
run: zig build pkghash # run: zig build pkghash
- name: Generate release notes - name: Generate release notes
id: release_notes id: release_notes

View file

@ -25,7 +25,7 @@ def get_tag_annotation(tagname):
def get_replacement(): def get_replacement():
ret = subprocess.run([ ret = subprocess.run([
"./zig-out/bin/pkghash", "./tools/pkghash",
"-g", f"--tag={TAG_NAME}", "-g", f"--tag={TAG_NAME}",
"--template=./tools/announceybot/release-dep-update-template.md", "--template=./tools/announceybot/release-dep-update-template.md",
], capture_output=True) ], capture_output=True)

View file

@ -14,7 +14,7 @@ def get_tag_annotation(tagname):
def get_replacement(): def get_replacement():
ret = subprocess.run([ ret = subprocess.run([
"./zig-out/bin/pkghash", "./tools/pkghash",
"-g", f"--tag={TAG_NAME}", "-g", f"--tag={TAG_NAME}",
"--template=./tools/announceybot/release-note-template.md", "--template=./tools/announceybot/release-note-template.md",
], capture_output=True) ], capture_output=True)

View file

@ -27,7 +27,7 @@ REPLACE_END_MARKER = '<!-- INSERT_DEP_END -->'
def get_replacement(): def get_replacement():
ret = subprocess.run([ ret = subprocess.run([
"./zig-out/bin/pkghash", "./tools/pkghash",
"-g", f"--tag={TAG_NAME}", "-g", f"--tag={TAG_NAME}",
"--template=./tools/announceybot/release-dep-update-template.md", "--template=./tools/announceybot/release-dep-update-template.md",
], capture_output=True) ], capture_output=True)

BIN
tools/pkghash Executable file

Binary file not shown.