Skip to content

Commit ba5becc

Browse files
committed
Debug release
1 parent 2cef230 commit ba5becc

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

.github/workflows/debug.yml

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: Debug
2+
3+
permissions:
4+
contents: write
5+
6+
on:
7+
push:
8+
tags:
9+
v[0-9]+.*
10+
11+
jobs:
12+
create-release:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: taiki-e/create-gh-release-action@v1
17+
with:
18+
# (required) GitHub token for creating GitHub Releases.
19+
token: ${{ secrets.GITHUB_TOKEN }}
20+
draft: true
21+
22+
upload-assets:
23+
strategy:
24+
matrix:
25+
os:
26+
- ubuntu-latest
27+
- macos-latest
28+
- windows-latest
29+
runs-on: ${{ matrix.os }}
30+
steps:
31+
- uses: actions/checkout@v4
32+
- uses: taiki-e/upload-rust-binary-action@v1
33+
with:
34+
# (required) Comma-separated list of binary names (non-extension portion of filename) to build and upload.
35+
# Note that glob pattern is not supported yet.
36+
bin: mdbook-typst-highlight
37+
# (optional) On which platform to distribute the `.tar.gz` file.
38+
# [default value: unix]
39+
# [possible values: all, unix, windows, none]
40+
tar: unix
41+
# (optional) On which platform to distribute the `.zip` file.
42+
# [default value: windows]
43+
# [possible values: all, unix, windows, none]
44+
zip: windows
45+
# (required) GitHub token for uploading assets to GitHub Releases.
46+
token: ${{ secrets.GITHUB_TOKEN }}
47+
profile: dev

0 commit comments

Comments
 (0)