Skip to content

Commit

Permalink
Fix version number and CI on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
alessiostalla committed Mar 5, 2023
1 parent 3035f7d commit 21e9494
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/linux-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,5 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: portofino-cli-linux
path: portofino
path: portofino
if-no-files-found: error
3 changes: 2 additions & 1 deletion .github/workflows/osx-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: portofino-cli-osx
path: portofino
path: portofino
if-no-files-found: error
3 changes: 2 additions & 1 deletion .github/workflows/windows-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,5 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: portofino-cli-windows
path: portofino.exe
path: portofino.exe
if-no-files-found: error
6 changes: 3 additions & 3 deletions portofino-cli.asd
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(in-package :asdf)

(defsystem "portofino-cli"
:version "1.0.0-alpha-1"
:version "0.1.0"
:author "Alessio Stalla"
:license "AGPL"
:depends-on ("cl-json" "cl-semver" "clingon" "drakma" "split-sequence")
Expand All @@ -12,13 +12,13 @@

#+sbcl
(defsystem "portofino-cli/executable"
:version (asdf:component-version (asdf:find-system :portofino-cli))
:version "0.1.0"
:author "Alessio Stalla"
:license "AGPL"
:depends-on ("portofino-cli")
:components ((:module "src" :components ((:file "binary-sbcl"))))
:build-operation "program-op"
:build-pathname #-win32 "portofino" #+win32 "portofino.exe"
:build-pathname "portofino"
:entry-point "portofino-cli:main"
:description "Command-line interface to a Portofino application")

Expand Down

0 comments on commit 21e9494

Please sign in to comment.