From 4c4be2e18fffbcb63dfc8e57388a7d648a64f1cb Mon Sep 17 00:00:00 2001
From: rcarteraz
Date: Mon, 19 Aug 2024 13:20:56 -0700
Subject: [PATCH 01/12] temp solution
---
src/App.tsx | 2 ++
src/components/UI/Footer.tsx | 35 +++++++++++++++++++++++++++++++++++
2 files changed, 37 insertions(+)
create mode 100644 src/components/UI/Footer.tsx
diff --git a/src/App.tsx b/src/App.tsx
index 1a014eb5..8b77213f 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -5,6 +5,7 @@ import { DeviceSelector } from "@components/DeviceSelector.js";
import { DialogManager } from "@components/Dialog/DialogManager.js";
import { NewDeviceDialog } from "@components/Dialog/NewDeviceDialog.js";
import { Toaster } from "@components/Toaster.js";
+import Footer from "@components/UI/Footer.js";
import { ThemeController } from "@components/generic/ThemeController.js";
import { useAppStore } from "@core/stores/appStore.js";
import { useDeviceStore } from "@core/stores/deviceStore.js";
@@ -44,6 +45,7 @@ export const App = (): JSX.Element => {
)}
+
diff --git a/src/components/UI/Footer.tsx b/src/components/UI/Footer.tsx
new file mode 100644
index 00000000..5d02c4dd
--- /dev/null
+++ b/src/components/UI/Footer.tsx
@@ -0,0 +1,35 @@
+import React from "react";
+
+const Footer = () => {
+ return (
+
+ );
+};
+
+export default Footer;
From 6c1f140ad16402668e05ed5e7e2a806cf663296b Mon Sep 17 00:00:00 2001
From: rcarteraz
Date: Mon, 19 Aug 2024 13:31:22 -0700
Subject: [PATCH 02/12] oops -- helps if you use the full link
---
src/components/UI/Footer.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/components/UI/Footer.tsx b/src/components/UI/Footer.tsx
index 5d02c4dd..ece49077 100644
--- a/src/components/UI/Footer.tsx
+++ b/src/components/UI/Footer.tsx
@@ -19,7 +19,7 @@ const Footer = () => {
{" "}
| Meshtastic® is a registered trademark of Meshtastic LLC. |
From 7d4001ea9d109dc5e96394435ce77faeba93e465 Mon Sep 17 00:00:00 2001
From: Hunter Thornsberry
Date: Fri, 23 Aug 2024 18:40:17 -0400
Subject: [PATCH 03/12] Update footer and initial groundword
---
src/components/PageLayout.tsx | 6 +++++-
src/components/UI/Footer.tsx | 13 ++++++++-----
2 files changed, 13 insertions(+), 6 deletions(-)
diff --git a/src/components/PageLayout.tsx b/src/components/PageLayout.tsx
index 274eef05..102a8c87 100644
--- a/src/components/PageLayout.tsx
+++ b/src/components/PageLayout.tsx
@@ -1,5 +1,6 @@
import { cn } from "@app/core/utils/cn.js";
import { AlignLeftIcon, type LucideIcon } from "lucide-react";
+import Footer from "./UI/Footer";
export interface PageLayoutProps {
label: string;
@@ -18,6 +19,7 @@ export const PageLayout = ({
children,
}: PageLayoutProps): JSX.Element => {
return (
+ <>
+ >
);
};
diff --git a/src/components/UI/Footer.tsx b/src/components/UI/Footer.tsx
index ece49077..3c53b896 100644
--- a/src/components/UI/Footer.tsx
+++ b/src/components/UI/Footer.tsx
@@ -1,9 +1,13 @@
import React from "react";
-const Footer = () => {
+export interface FooterProps
+ extends React.HTMLAttributes {}
+
+const Footer = React.forwardRef(
+ ({className, ...props}, ref) => {
return (
{" "}
| Meshtastic® is a registered trademark of Meshtastic LLC. |
+ {" "}
- {" "}
Legal Information
- .
);
-};
+});
export default Footer;
From 076dae80b72346162f935dd723c90082a6a969ee Mon Sep 17 00:00:00 2001
From: Hunter Thornsberry
Date: Fri, 23 Aug 2024 18:58:22 -0400
Subject: [PATCH 04/12] first working version
---
src/App.tsx | 6 +-
.../PageComponents/Messages/ChannelChat.tsx | 2 +-
src/components/PageLayout.tsx | 64 +++---
src/components/UI/Footer.tsx | 63 +++---
src/components/UI/Tabs.tsx | 2 +-
src/pages/Dashboard/index.tsx | 136 +++++++------
src/pages/Map.tsx | 190 +++++++++---------
src/pages/Messages.tsx | 106 +++++-----
src/pages/Nodes.tsx | 136 +++++++------
9 files changed, 358 insertions(+), 347 deletions(-)
diff --git a/src/App.tsx b/src/App.tsx
index 8b77213f..782f9e6c 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -41,11 +41,13 @@ export const App = (): JSX.Element => {
) : (
-
+ <>
+
+
+ >
)}
-
diff --git a/src/components/PageComponents/Messages/ChannelChat.tsx b/src/components/PageComponents/Messages/ChannelChat.tsx
index 81ed007f..7507de97 100644
--- a/src/components/PageComponents/Messages/ChannelChat.tsx
+++ b/src/components/PageComponents/Messages/ChannelChat.tsx
@@ -68,7 +68,7 @@ export const ChannelChat = ({
)}
-
diff --git a/src/components/PageLayout.tsx b/src/components/PageLayout.tsx
index 102a8c87..1a2e4dd7 100644
--- a/src/components/PageLayout.tsx
+++ b/src/components/PageLayout.tsx
@@ -20,42 +20,42 @@ export const PageLayout = ({
}: PageLayoutProps): JSX.Element => {
return (
<>
-
-
-
-
-
-
{label}
-
- {actions?.map((action, index) => (
-
- ))}
+
+
+
+
+
+
{label}
+
+ {actions?.map((action, index) => (
+
+ ))}
+
+
+ {children}
+
+
-
- {children}
-
-
-
>
);
};
diff --git a/src/components/UI/Footer.tsx b/src/components/UI/Footer.tsx
index 3c53b896..d0e082e7 100644
--- a/src/components/UI/Footer.tsx
+++ b/src/components/UI/Footer.tsx
@@ -1,38 +1,37 @@
import React from "react";
-export interface FooterProps
- extends React.HTMLAttributes
{}
+export interface FooterProps extends React.HTMLAttributes {}
const Footer = React.forwardRef(
- ({className, ...props}, ref) => {
- return (
-
- );
-});
+ ({ className, ...props }, ref) => {
+ return (
+
+ );
+ },
+);
export default Footer;
diff --git a/src/components/UI/Tabs.tsx b/src/components/UI/Tabs.tsx
index 2d9b3e69..f8c83e6d 100644
--- a/src/components/UI/Tabs.tsx
+++ b/src/components/UI/Tabs.tsx
@@ -12,7 +12,7 @@ const TabsList = React.forwardRef<
{
const devices = useMemo(() => getDevices(), [getDevices]);
return (
-
-
-
-
Connected Devices
-
Manage, connect and disconnect devices
+ <>
+
+
+
+
Connected Devices
+ Manage, connect and disconnect devices
+
-
-
+
-
- {devices.length ? (
-
- {devices.map((device) => {
- return (
- -
-
-
-
- {device.nodes.get(device.hardware.myNodeNum)?.user
- ?.longName ?? "UNK"}
-
-
- {device.connection?.connType === "ble" && (
- <>
-
- BLE
- >
- )}
- {device.connection?.connType === "serial" && (
- <>
-
- Serial
- >
- )}
- {device.connection?.connType === "http" && (
- <>
-
- Network
- >
- )}
+
+ {devices.length ? (
+
+ {devices.map((device) => {
+ return (
+ -
+
+
+
+ {device.nodes.get(device.hardware.myNodeNum)?.user
+ ?.longName ?? "UNK"}
+
+
+ {device.connection?.connType === "ble" && (
+ <>
+
+ BLE
+ >
+ )}
+ {device.connection?.connType === "serial" && (
+ <>
+
+ Serial
+ >
+ )}
+ {device.connection?.connType === "http" && (
+ <>
+
+ Network
+ >
+ )}
+
-
-
-
-
- {device.nodes.size === 0 ? 0 : device.nodes.size - 1}
+
+
+
+ {device.nodes.size === 0 ? 0 : device.nodes.size - 1}
+
-
-
- );
- })}
-
- ) : (
-
-
-
No Devices
-
Connect atleast one device to get started
-
-
- )}
+
+ );
+ })}
+
+ ) : (
+
+
+
No Devices
+
Connect atleast one device to get started
+
+
+ )}
+
-
+ >
);
};
diff --git a/src/pages/Map.tsx b/src/pages/Map.tsx
index 8c86480e..c0591aa8 100644
--- a/src/pages/Map.tsx
+++ b/src/pages/Map.tsx
@@ -87,108 +87,110 @@ export const MapPage = (): JSX.Element => {
))}
-
+
- {
- // const waypoint = new Protobuf.Waypoint({
- // name: "test",
- // description: "test description",
- // latitudeI: Math.trunc(e.lngLat.lat * 1e7),
- // longitudeI: Math.trunc(e.lngLat.lng * 1e7)
- // });
- // addWaypoint(waypoint);
- // connection?.sendWaypoint(waypoint, "broadcast");
- // }}
-
- // @ts-ignore
- attributionControl={false}
- renderWorldCopies={false}
- maxPitch={0}
- style={{
- filter: darkMode
- ? "brightness(0.6) invert(1) contrast(3) hue-rotate(200deg) saturate(0.3) brightness(0.7)"
- : "",
- }}
- dragRotate={false}
- touchZoomRotate={false}
- initialViewState={{
- zoom: 1.6,
- latitude: 35,
- longitude: 0,
- }}
+ ]}
>
- {waypoints.map((wp) => (
-
-
-
-
-
- ))}
- {/* {rasterSources.map((source, index) => (
+ {
+ // const waypoint = new Protobuf.Waypoint({
+ // name: "test",
+ // description: "test description",
+ // latitudeI: Math.trunc(e.lngLat.lat * 1e7),
+ // longitudeI: Math.trunc(e.lngLat.lng * 1e7)
+ // });
+ // addWaypoint(waypoint);
+ // connection?.sendWaypoint(waypoint, "broadcast");
+ // }}
+
+ // @ts-ignore
+ attributionControl={false}
+ renderWorldCopies={false}
+ maxPitch={0}
+ style={{
+ filter: darkMode
+ ? "brightness(0.6) invert(1) contrast(3) hue-rotate(200deg) saturate(0.3) brightness(0.7)"
+ : "",
+ }}
+ dragRotate={false}
+ touchZoomRotate={false}
+ initialViewState={{
+ zoom: 1.6,
+ latitude: 35,
+ longitude: 0,
+ }}
+ >
+ {waypoints.map((wp) => (
+
+
+
+
+
+ ))}
+ {/* {rasterSources.map((source, index) => (
))} */}
- {allNodes.map((node) => {
- if (node.position?.latitudeI) {
- return (
- {
- map?.easeTo({
- zoom: 12,
- center: [
- (node.position?.longitudeI ?? 0) / 1e7,
- (node.position?.latitudeI ?? 0) / 1e7,
- ],
- });
- }}
- >
-
-
-
- {node.user?.longName}
-
-
-
- );
- }
- })}
-
-
+ {allNodes.map((node) => {
+ if (node.position?.latitudeI) {
+ return (
+ {
+ map?.easeTo({
+ zoom: 12,
+ center: [
+ (node.position?.longitudeI ?? 0) / 1e7,
+ (node.position?.latitudeI ?? 0) / 1e7,
+ ],
+ });
+ }}
+ >
+
+
+
+ {node.user?.longName}
+
+
+
+ );
+ }
+ })}
+
+
+
>
);
};
diff --git a/src/pages/Messages.tsx b/src/pages/Messages.tsx
index 4afe1e62..c25f24a7 100644
--- a/src/pages/Messages.tsx
+++ b/src/pages/Messages.tsx
@@ -67,60 +67,62 @@ export const MessagesPage = (): JSX.Element => {
))}
-
+
+
+ toast({
+ title: "Traceroute sent.",
+ }),
+ );
+ },
},
- },
- ]
- : []
- }
- >
- {allChannels.map(
- (channel) =>
- activeChat === channel.index && (
-
- ),
- )}
- {filteredNodes.map(
- (node) =>
- activeChat === node.num && (
-
- ),
- )}
-
+ ]
+ : []
+ }
+ >
+ {allChannels.map(
+ (channel) =>
+ activeChat === channel.index && (
+
+ ),
+ )}
+ {filteredNodes.map(
+ (node) =>
+ activeChat === node.num && (
+
+ ),
+ )}
+
+
>
);
};
diff --git a/src/pages/Nodes.tsx b/src/pages/Nodes.tsx
index 73ba6e46..c7682f59 100644
--- a/src/pages/Nodes.tsx
+++ b/src/pages/Nodes.tsx
@@ -1,3 +1,4 @@
+import Footer from "@app/components/UI/Footer";
import { useAppStore } from "@app/core/stores/appStore";
import { Sidebar } from "@components/Sidebar.js";
import { Button } from "@components/UI/Button.js";
@@ -27,73 +28,76 @@ export const NodesPage = (): JSX.Element => {
return (
<>
-
-
[
- ,
-
- {node.user?.longName ??
- (node.user?.macaddr
- ? `Meshtastic ${base16
- .stringify(node.user?.macaddr.subarray(4, 6) ?? [])
- .toLowerCase()}`
- : `UNK: ${node.num}`)}
-
,
+
+
+
[
+ ,
+
+ {node.user?.longName ??
+ (node.user?.macaddr
+ ? `Meshtastic ${base16
+ .stringify(node.user?.macaddr.subarray(4, 6) ?? [])
+ .toLowerCase()}`
+ : `UNK: ${node.num}`)}
+
,
-
- {Protobuf.Mesh.HardwareModel[node.user?.hwModel ?? 0]}
- ,
-
- {base16
- .stringify(node.user?.macaddr ?? [])
- .match(/.{1,2}/g)
- ?.join(":") ?? "UNK"}
- ,
-
- {node.lastHeard === 0 ? (
- Never
- ) : (
-
- )}
- ,
-
- {node.snr}db/
- {Math.min(Math.max((node.snr + 10) * 5, 0), 100)}%/
- {(node.snr + 10) * 5}raw
- ,
-
- {node.lastHeard !== 0
- ? node.viaMqtt === false && node.hopsAway === 0
- ? "Direct"
- : `${node.hopsAway.toString()} ${
- node.hopsAway > 1 ? "hops" : "hop"
- } away`
- : "-"}
- {node.viaMqtt === true ? ", via MQTT" : ""}
- ,
- ,
- ])}
- />
+
+ {Protobuf.Mesh.HardwareModel[node.user?.hwModel ?? 0]}
+ ,
+
+ {base16
+ .stringify(node.user?.macaddr ?? [])
+ .match(/.{1,2}/g)
+ ?.join(":") ?? "UNK"}
+ ,
+
+ {node.lastHeard === 0 ? (
+ Never
+ ) : (
+
+ )}
+ ,
+
+ {node.snr}db/
+ {Math.min(Math.max((node.snr + 10) * 5, 0), 100)}%/
+ {(node.snr + 10) * 5}raw
+ ,
+
+ {node.lastHeard !== 0
+ ? node.viaMqtt === false && node.hopsAway === 0
+ ? "Direct"
+ : `${node.hopsAway.toString()} ${
+ node.hopsAway > 1 ? "hops" : "hop"
+ } away`
+ : "-"}
+ {node.viaMqtt === true ? ", via MQTT" : ""}
+ ,
+ ,
+ ])}
+ />
+
+
>
);
From f0d8db1c87c0b1af04192f073b480329c8bb1710 Mon Sep 17 00:00:00 2001
From: Hunter Thornsberry
Date: Mon, 26 Aug 2024 14:10:43 -0400
Subject: [PATCH 05/12] flex-grow to make footer stick to bottom
---
src/App.tsx | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/App.tsx b/src/App.tsx
index 782f9e6c..cd522876 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -43,6 +43,7 @@ export const App = (): JSX.Element => {
) : (
<>
+
>
)}
From c6cc5e5e6f4eaa819c6904475168d3a81662dcde Mon Sep 17 00:00:00 2001
From: Hunter Thornsberry
Date: Mon, 26 Aug 2024 14:32:18 -0400
Subject: [PATCH 06/12] biome
---
src/App.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/App.tsx b/src/App.tsx
index cd522876..48a806f4 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -43,7 +43,7 @@ export const App = (): JSX.Element => {
) : (
<>
-
+
>
)}
From 59126ca939ef29fb6a436bd5bc532adaebe73edd Mon Sep 17 00:00:00 2001
From: Ronin <6971304+TheCyberRonin@users.noreply.github.com>
Date: Thu, 29 Aug 2024 21:27:37 -0400
Subject: [PATCH 07/12] feat: Add a build step for `build.tar`
---
.github/workflows/pr.yml | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml
index 9828a7ff..5258bb05 100644
--- a/.github/workflows/pr.yml
+++ b/.github/workflows/pr.yml
@@ -19,3 +19,12 @@ jobs:
- name: Build Package
run: pnpm build
+
+ - name: Compress build
+ run: pnpm package
+
+ - name: Archive compressed build
+ uses: actions/upload -artifact@v4
+ with:
+ name: build
+ path: dist/build.tar
From 3e6653a98f6e0be160d3996f2a51220b0dcd02bc Mon Sep 17 00:00:00 2001
From: Ronin <6971304+TheCyberRonin@users.noreply.github.com>
Date: Thu, 29 Aug 2024 21:31:04 -0400
Subject: [PATCH 08/12] chore: Fix typo in package name for uploading
---
.github/workflows/pr.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml
index 5258bb05..870ca6fe 100644
--- a/.github/workflows/pr.yml
+++ b/.github/workflows/pr.yml
@@ -24,7 +24,7 @@ jobs:
run: pnpm package
- name: Archive compressed build
- uses: actions/upload -artifact@v4
+ uses: actions/upload-artifact@v4
with:
name: build
path: dist/build.tar
From c16070f02b66091be5921b344553d8dbd1f4c655 Mon Sep 17 00:00:00 2001
From: Ronin <6971304+TheCyberRonin@users.noreply.github.com>
Date: Thu, 29 Aug 2024 21:54:58 -0400
Subject: [PATCH 09/12] feat: Only do `CI` GHA on push to `master`
---
.github/workflows/ci.yml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 71377d24..4c3239a5 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -1,6 +1,9 @@
name: CI
-on: push
+on:
+ push:
+ branches:
+ - master
permissions:
contents: write
From 05a6b6293e1b323c160ebbeb58dd652df77fdc19 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rafael=20Cort=C3=AAs?=
Date: Sat, 31 Aug 2024 10:51:53 +0100
Subject: [PATCH 10/12] Change 'powerScreenEnabled' config type to toggle
---
src/components/PageComponents/ModuleConfig/Telemetry.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/components/PageComponents/ModuleConfig/Telemetry.tsx b/src/components/PageComponents/ModuleConfig/Telemetry.tsx
index 6fb5ed4d..5af2f2b5 100644
--- a/src/components/PageComponents/ModuleConfig/Telemetry.tsx
+++ b/src/components/PageComponents/ModuleConfig/Telemetry.tsx
@@ -87,7 +87,7 @@ export const Telemetry = (): JSX.Element => {
description: "How often to send Power data over the mesh",
},
{
- type: "text",
+ type: "toggle",
name: "powerScreenEnabled",
label: "Power Screen Enabled",
description: "Enable the Power Telemetry Screen",
From 7895df2d9f577c8fca4119c52e4eb2625c43a832 Mon Sep 17 00:00:00 2001
From: Hunter Thornsberry
Date: Wed, 4 Sep 2024 00:35:22 -0400
Subject: [PATCH 11/12] Stop release on ci
---
.github/workflows/ci.yml | 39 ---------------------
.github/workflows/release.yml | 64 +++++++++++++++++++++++++++++++++++
2 files changed, 64 insertions(+), 39 deletions(-)
create mode 100644 .github/workflows/release.yml
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 4c3239a5..cd73ce31 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -24,42 +24,3 @@ jobs:
- name: Build Package
run: pnpm build
-
- - name: Package Output
- run: pnpm package
-
- - name: Upload Artifact
- uses: "marvinpinto/action-automatic-releases@latest"
- with:
- repo_token: "${{ secrets.GITHUB_TOKEN }}"
- automatic_release_tag: "latest"
- prerelease: false
- files: |
- ./dist/build.tar
-
- - name: Set up QEMU
- uses: docker/setup-qemu-action@v3
-
- - name: Buildah Build
- id: build-container
- uses: redhat-actions/buildah-build@v2
- with:
- containerfiles: |
- ./Containerfile
- image: ${{github.event.repository.full_name}}
- tags: latest ${{ github.sha }}
- oci: true
- platforms: linux/amd64, linux/arm64
-
- - name: Push To Registry
- id: push-to-registry
- uses: redhat-actions/push-to-registry@v2
- with:
- image: ${{ steps.build-container.outputs.image }}
- tags: ${{ steps.build-container.outputs.tags }}
- registry: ghcr.io
- username: ${{ github.actor }}
- password: ${{ secrets.GITHUB_TOKEN }}
-
- - name: Print image url
- run: echo "Image pushed to ${{ steps.push-to-registry.outputs.registry-paths }}"
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
new file mode 100644
index 00000000..0e59bdb4
--- /dev/null
+++ b/.github/workflows/release.yml
@@ -0,0 +1,64 @@
+name: 'Release'
+
+on:
+ release:
+ types: [released]
+
+permissions:
+ contents: write
+ packages: write
+
+jobs:
+ build-and-package:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+ - uses: pnpm/action-setup@v4
+ with:
+ version: latest
+
+ - name: Install Dependencies
+ run: pnpm install
+
+ - name: Build Package
+ run: pnpm build
+
+ - name: Package Output
+ run: pnpm package
+
+ - name: Upload Artifact
+ uses: "marvinpinto/action-automatic-releases@latest"
+ with:
+ repo_token: "${{ secrets.GITHUB_TOKEN }}"
+ automatic_release_tag: "latest"
+ prerelease: false
+ files: |
+ ./dist/build.tar
+
+ - name: Set up QEMU
+ uses: docker/setup-qemu-action@v3
+
+ - name: Buildah Build
+ id: build-container
+ uses: redhat-actions/buildah-build@v2
+ with:
+ containerfiles: |
+ ./Containerfile
+ image: ${{github.event.repository.full_name}}
+ tags: latest ${{ github.sha }}
+ oci: true
+ platforms: linux/amd64, linux/arm64
+
+ - name: Push To Registry
+ id: push-to-registry
+ uses: redhat-actions/push-to-registry@v2
+ with:
+ image: ${{ steps.build-container.outputs.image }}
+ tags: ${{ steps.build-container.outputs.tags }}
+ registry: ghcr.io
+ username: ${{ github.actor }}
+ password: ${{ secrets.GITHUB_TOKEN }}
+
+ - name: Print image url
+ run: echo "Image pushed to ${{ steps.push-to-registry.outputs.registry-paths }}"
From 80ab44c8db483ba268e179c4737acf566830e585 Mon Sep 17 00:00:00 2001
From: Hunter Thornsberry
Date: Wed, 4 Sep 2024 00:39:12 -0400
Subject: [PATCH 12/12] don't release on release
---
.github/workflows/release.yml | 9 ---------
1 file changed, 9 deletions(-)
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 0e59bdb4..2ac7ae19 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -27,15 +27,6 @@ jobs:
- name: Package Output
run: pnpm package
- - name: Upload Artifact
- uses: "marvinpinto/action-automatic-releases@latest"
- with:
- repo_token: "${{ secrets.GITHUB_TOKEN }}"
- automatic_release_tag: "latest"
- prerelease: false
- files: |
- ./dist/build.tar
-
- name: Set up QEMU
uses: docker/setup-qemu-action@v3