From 2f615ca1a0579de69380a6154793e526075c12f0 Mon Sep 17 00:00:00 2001 From: Trinity Date: Tue, 12 Nov 2024 15:31:05 +0700 Subject: [PATCH 1/6] Fix build --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8605d6a6..c4448a8b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,7 +26,7 @@ jobs: override: true - name: Build schemas - run: ./devtools/build_schemas.sh + run: ./scripts/build_schemas.sh # This must go after the other cargo commands, as it writes lots of stuff to # target/ with root permissions (from docker) @@ -35,7 +35,7 @@ jobs: with: image: cosmwasm/optimizer:0.15.0 options: -v ${{ github.workspace }}:/code - run: optimize.sh . + run: ./scripts/optimize.sh . - name: Create release uses: softprops/action-gh-release@v1 From bb1f0c35ea5c9f883d837e61175624dcae9632ff Mon Sep 17 00:00:00 2001 From: Trinity Date: Tue, 12 Nov 2024 15:32:28 +0700 Subject: [PATCH 2/6] Fix build --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c4448a8b..cc2dc6e7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,7 +35,7 @@ jobs: with: image: cosmwasm/optimizer:0.15.0 options: -v ${{ github.workspace }}:/code - run: ./scripts/optimize.sh . + run: ./scripts/optimizer.sh . - name: Create release uses: softprops/action-gh-release@v1 From 13fdd9d306c7c0ca2988f5f420ac6767e6f1a4db Mon Sep 17 00:00:00 2001 From: Trinity Date: Tue, 12 Nov 2024 15:32:57 +0700 Subject: [PATCH 3/6] test --- .github/workflows/release.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cc2dc6e7..a0992b67 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,8 +4,6 @@ on: push: - tags: - - '*' name: Release artifacts From 6817044fdaef39502e013fdc576fe3bca54ec631 Mon Sep 17 00:00:00 2001 From: Trinity Date: Tue, 12 Nov 2024 15:55:45 +0700 Subject: [PATCH 4/6] test --- .cargo/config | 1 + 1 file changed, 1 insertion(+) diff --git a/.cargo/config b/.cargo/config index fcf0da7d..f8b84118 100644 --- a/.cargo/config +++ b/.cargo/config @@ -1,3 +1,4 @@ [alias] wasm = "build --release --lib --target wasm32-unknown-unknown" wasm-debug = "build --lib --target wasm32-unknown-unknown" +schema = "run schema" \ No newline at end of file From 0d67db73700121020f1e64b9e2179acd40ecb41a Mon Sep 17 00:00:00 2001 From: Trinity Date: Tue, 12 Nov 2024 16:01:13 +0700 Subject: [PATCH 5/6] test --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a0992b67..e0ecfcf9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,7 +33,7 @@ jobs: with: image: cosmwasm/optimizer:0.15.0 options: -v ${{ github.workspace }}:/code - run: ./scripts/optimizer.sh . + run: optimizer.sh . - name: Create release uses: softprops/action-gh-release@v1 From 6d4ade6024b0bd4ed6da2ff508468dd158c72c66 Mon Sep 17 00:00:00 2001 From: Trinity Date: Tue, 12 Nov 2024 16:05:00 +0700 Subject: [PATCH 6/6] test --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e0ecfcf9..258fe338 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,7 +33,7 @@ jobs: with: image: cosmwasm/optimizer:0.15.0 options: -v ${{ github.workspace }}:/code - run: optimizer.sh . + run: optimize.sh . - name: Create release uses: softprops/action-gh-release@v1