Skip to content

Commit

Permalink
try new workflow release beta17
Browse files Browse the repository at this point in the history
  • Loading branch information
GregoireHENRY committed Dec 14, 2023
1 parent ad368ca commit 1bfaab6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest]
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -73,10 +72,10 @@ jobs:
- name: Build
run: |
echo "Build main executable."
cargo build -r --all-features && strip target/release/kalast
cargo build -r --all-features && strip target/release/kalast$EXT
echo "Build custom executable for specific example."
cargo build -r --all-features --example viewer-picker && strip target/release/examples/viewer-picker
cargo build -r --all-features --example viewer-picker && strip target/release/examples/viewer-picker$EXT
shell: bash

- name: Bundle
Expand All @@ -101,7 +100,7 @@ jobs:
mv bundle $BUNDLE_NAME
if [ "${{ matrix.os }}" == "windows-latest" ]; then
iscc compile/installer.iss /DVERSION=${{ github.ref_name }} /DSETUP_NAME=${{ env.RELEASE_FILE }} /DBUNDLE_PATH=.\bundle /DASSETS_PATH=.\assets
iscc compile/installer.iss /DVERSION=${{ github.ref_name }} /DSETUP_NAME=$RELEASE_FILE /DBUNDLE_PATH=.\bundle /DASSETS_PATH=.\assets
else
tar cvzf $RELEASE_FILE $BUNDLE_NAME
fi
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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kalast"
version = "0.4.0-beta16"
version = "0.4.0-beta17"
authors = ["Grégoire Henry <gregoire.henry@oma.be>"]
edition = "2021"
description = "Thermophysical Model for Binary Asteroids"
Expand Down

0 comments on commit 1bfaab6

Please sign in to comment.