Skip to content

Commit

Permalink
Merge branch 'main' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
tomjeannesson authored Mar 14, 2024
2 parents a3dd49e + af823ea commit 5419667
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 21 deletions.
32 changes: 18 additions & 14 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
strategy:
matrix:
include:
# - platform: mac
# os: "macos-12"
- platform: mac
os: "macos-12"
- platform: linux
os: "ubuntu-22.04"
# - platform: windows
# os: "windows-2022"
- platform: windows
os: "windows-2022"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -52,26 +52,30 @@ jobs:
runs-on: "ubuntu-22.04"
needs: build
steps:
- name: Tag Docker image
run: |
TAG_NAME=$(grep -oP '(?<=# \[)[^\]]+' CHANGELOG.md | head -n 1)
VERSION=v$TAG_NAME
echo "VERSION=$VERSION" >> $GITHUB_ENV
- uses: actions/checkout@v4
with:
ref: ${{ github.event.release.target_commitish }}

- name: Get all distributables
uses: actions/download-artifact@v3

- name: Get distributables
run: |
mkdir distributables
cp -r linux-distributables/* distributables/
# cp -r mac-distributables/* distributables/
# cp -r windows-distributables/* distributables/
cp -r mac-distributables/* distributables/
cp -r windows-distributables/* distributables/
ls distributables
- name: Filter out .blockmap files
run: |
find distribuables -name '*.blockmap' -exec rm {} +
find distributables -name '*.blockmap' -exec rm {} +
- name: Tag Docker image
run: |
TAG_NAME=$(grep -oP '(?<=# \[)[^\]]+' CHANGELOG.md | head -n 1)
VERSION=v$TAG_NAME
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Publish all artifacts to GitHub Releases
uses: softprops/action-gh-release@v1
Expand Down
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## [1.7.11](https://github.com/napse-invest/Napse/compare/v1.7.10...v1.7.11) (2024-03-14)


### Bug Fixes

* **ci:** build ([bae11b9](https://github.com/napse-invest/Napse/commit/bae11b9bd4447042e040c90c896811d1371a30c1))

## [1.7.10](https://github.com/napse-invest/Napse/compare/v1.7.9...v1.7.10) (2024-03-14)


### Bug Fixes

* **ci:** build ([ca7dc60](https://github.com/napse-invest/Napse/commit/ca7dc60cba4f950749eee8ffa2fb5291c12182f6))

## [1.7.9](https://github.com/napse-invest/Napse/compare/v1.7.8...v1.7.9) (2024-03-14)


### Bug Fixes

* **ci:** build ([47c7574](https://github.com/napse-invest/Napse/commit/47c75747ed2afcf6121411281a642f113212796d))

## [1.7.8](https://github.com/napse-invest/Napse/compare/v1.7.7...v1.7.8) (2024-03-14)


Expand Down
9 changes: 2 additions & 7 deletions desktop-app/renderer/pages/fleets/createFleetDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export default function CreateFleetDialog({
<DialogContent className="">
<Form {...form}>
<form
// onSubmit={form.handleSubmit(onSubmitFleet)}
onSubmit={form.handleSubmit(onSubmitFleet)}
className="space-y-2"
>
<Carousel className="">
Expand Down Expand Up @@ -223,12 +223,7 @@ export default function CreateFleetDialog({
clusters={Clusters}
setClusters={setClusters}
/>
<Button
type="submit"
onClick={form.handleSubmit(onSubmitFleet)}
>
Create
</Button>
<Button type="submit">Create</Button>
</div>
</CarouselItem>
</CarouselContent>
Expand Down

0 comments on commit 5419667

Please sign in to comment.