Skip to content

Commit

Permalink
chore(actions): generate download link for each build
Browse files Browse the repository at this point in the history
  • Loading branch information
Machine-Maker committed Nov 26, 2023
1 parent e634ed0 commit b775eda
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ indent_style = space
insert_final_newline = true
max_line_length = 160
tab_width = 4
trim_trailing_whitespace = true
ij_continuation_indent_size = 4
ij_formatter_off_tag = @formatter:off
ij_formatter_on_tag = @formatter:on
Expand Down Expand Up @@ -369,6 +370,7 @@ ij_kotlin_wrap_expression_body_functions = 1
ij_kotlin_wrap_first_method_in_call_chain = false

[{*.markdown,*.md}]
trim_trailing_whitespace = false
ij_markdown_force_one_space_after_blockquote_symbol = true
ij_markdown_force_one_space_after_header_symbol = true
ij_markdown_force_one_space_after_list_bullet = true
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,15 @@ jobs:
PaperTweaks.jar
PaperTweaks.jar.sha256
LICENSE
- name: Generate Build Summary
uses: actions/github-script@v7
with:
script: |
const { owner, repo } = context.repo;
const run_id = context.runId;
core.summary
.addHeading('Download', 3)
.addLink('PaperTweaks.zip', `https://nightly.link/${owner}/${repo}/actions/runs/${run_id}`)
.write();

0 comments on commit b775eda

Please sign in to comment.