Skip to content

Commit

Permalink
2.16.7
Browse files Browse the repository at this point in the history
  • Loading branch information
helgoboss committed Sep 13, 2024
1 parent b76090f commit 60ad2ab
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 31 deletions.
37 changes: 8 additions & 29 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,38 +149,17 @@ jobs:
if: matrix.os == 'macos-latest'
run: |
strip -u -r target/${{ matrix.target }}/${{ matrix.profile }}/${{ matrix.lib-file-name }}
# Upload plug-in (all)
- name: Upload plug-in to artifact
# Upload
- name: Upload plug-in and extension to artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.artifact }}
path: target/${{ matrix.target }}/${{ matrix.profile }}/${{ matrix.lib-file-name }}
# Upload extension (macOS and Windows only for now)
- name: Upload extension to artifact
if: matrix.extension-file-name != ''
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.artifact }}
path: target/${{ matrix.target }}/${{ matrix.profile }}/${{ matrix.extension-file-name }}
# Upload debug symbols (all)
- name: Upload Windows debug symbols to artifact
if: matrix.os == 'windows-latest'
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.artifact }}
path: target/${{ matrix.target }}/${{ matrix.profile }}/helgobox.pdb
- name: Upload macOS debug symbols to artifact
if: matrix.os == 'macos-latest'
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.artifact }}
path: target/${{ matrix.target }}/${{ matrix.profile }}/deps/libhelgobox.dylib.dSYM/
- name: Upload Linux debug symbols to artifact
if: startsWith(matrix.os, 'ubuntu-')
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.artifact }}
path: target/${{ matrix.target }}/${{ matrix.profile }}/libhelgobox-debug.so
path: |
target/${{ matrix.target }}/${{ matrix.profile }}/${{ matrix.lib-file-name }}
target/${{ matrix.target }}/${{ matrix.profile }}/${{ matrix.extension-file-name }}
target/${{ matrix.target }}/${{ matrix.profile }}/helgobox.pdb
target/${{ matrix.target }}/${{ matrix.profile }}/deps/libhelgobox.dylib.dSYM/
target/${{ matrix.target }}/${{ matrix.profile }}/libhelgobox-debug.so
create-release:
name: Publish release
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion main/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "helgobox"
version = "2.16.6"
version = "2.16.7"
authors = ["Benjamin Klum <[email protected]>"]
edition = "2021"
build = "build.rs"
Expand Down

0 comments on commit 60ad2ab

Please sign in to comment.