Skip to content

Commit 626e823

Browse files
committed
Debug release
1 parent 2cef230 commit 626e823

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

.github/workflows/debug.yml

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

0 commit comments

Comments
 (0)