diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index b343657f1..da7d3b3f5 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -512,6 +512,10 @@ jobs: run: git config --global --add safe.directory '*' - name: configure run: ./configure.sh --native-segwit + - name: Bump version to beta (because segwit) + run: | + git submodule foreach git fetch --all && git submodule sync --recursive && git submodule update --init --recursive + dotnet fsi ./scripts/beta_bump.fsx - name: pack&push run: make push @@ -582,7 +586,7 @@ jobs: - name: Bump snap version run: | git submodule foreach git fetch --all && git submodule sync --recursive && git submodule update --init --recursive - dotnet fsi ./scripts/snap_bump.fsx + dotnet fsi ./scripts/beta_bump.fsx - name: Generate snap package run: | diff --git a/scripts/snap_bump.fsx b/scripts/beta_bump.fsx similarity index 100% rename from scripts/snap_bump.fsx rename to scripts/beta_bump.fsx