Skip to content

Commit

Permalink
0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mio-19 committed Oct 8, 2024
1 parent f5c5bc7 commit 02d6146
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -231,10 +231,11 @@ jobs:
.\target\chester.exe,`
.\target\chester-lsp.exe `
-DestinationPath chester-${{ matrix.os_name }}.zip
# Generate checksum for the zip file
Get-FileHash -Algorithm SHA256 chester-${{ matrix.os_name }}.zip | `
Select-Object -ExpandProperty Hash > chester-${{ matrix.os_name }}.zip.sha256
# generating checksum using Git Bash
- name: Generate checksum for Windows zip
if: runner.os == 'Windows' && startsWith(github.ref, 'refs/tags/')
run: |
sha256sum chester-${{ matrix.os_name }}.zip > chester-${{ matrix.os_name }}.zip.sha256
# Create or Update Releases when a tag is pushed
- name: Create or Update GitHub Release Tag for Unix
if: runner.os != 'Windows' && startsWith(github.ref, 'refs/tags/')
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ val baseDeps = Seq(

commonSettings

ThisBuild / version := sys.env.getOrElse("VERSION", "0.0.5")
ThisBuild / version := sys.env.getOrElse("VERSION", "0.0.7")
ThisBuild / organization := "com.github.chester-lang"

ThisBuild / assemblyMergeStrategy := {
Expand Down

0 comments on commit 02d6146

Please sign in to comment.