From 6c5b388acc3963c67067ed0ed354ea85d6c142b1 Mon Sep 17 00:00:00 2001 From: siwatanejo <7511840+siwatanejo@users.noreply.github.com> Date: Fri, 22 Mar 2024 10:31:16 +0100 Subject: [PATCH] snap: rename app for now The app name was put in quarantine by SnapStore reviewers[1], so we have to use another app name for now. [1] https://forum.snapcraft.io/t/suspended-account-and-app-name-after-i-managed-to-successfully-publish-it/39398/3 --- .github/workflows/CI.yml | 2 +- snap/snapcraft.yaml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index e34f761..dc2d095 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -94,7 +94,7 @@ jobs: sudo snap install --devmode --dangerous *.snap - name: Test snap - run: packwallet + run: dotnet-fsharp-helloworld conventions: needs: diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index 9301068..5f4e6ca 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,6 +1,6 @@ -name: packwallet # you probably want to 'snapcraft register ' +name: dotnet-fsharp-helloworld # you probably want to 'snapcraft register ' base: core22 # the base snap is the execution environment for this snap -version: '0.1.1' # just for humans, typically '1.2+git' or '1.3.2' +version: '0.1.2' # just for humans, typically '1.2+git' or '1.3.2' summary: HelloWorld F# app with snap # 79 char long summary description: | Parse CoinDesk API to show current BTC price. @@ -9,7 +9,7 @@ grade: devel # must be 'stable' to release into candidate/stable channels confinement: devmode # use 'strict' once you have the right plugs and slots parts: - packwallet: + dotnet-fsharp-helloworld: plugin: dotnet source: . build-packages: @@ -18,6 +18,6 @@ parts: - dotnet-runtime-70 apps: - packwallet: + dotnet-fsharp-helloworld: command: launch.sh