From 602977cb64596aae5cc2f13d0b368f1e02459ee2 Mon Sep 17 00:00:00 2001 From: Guilherme Dantas Date: Wed, 18 Feb 2026 22:52:52 -0300 Subject: [PATCH 1/2] Use GH CLI to upload assets to GH releases --- .changeset/yummy-dancers-cover.md | 5 +++++ .github/workflows/upload-artifacts.yml | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) create mode 100644 .changeset/yummy-dancers-cover.md diff --git a/.changeset/yummy-dancers-cover.md b/.changeset/yummy-dancers-cover.md new file mode 100644 index 000000000..bf01634d3 --- /dev/null +++ b/.changeset/yummy-dancers-cover.md @@ -0,0 +1,5 @@ +--- +"@cartesi/rollups": patch +--- + +Use GH CLI to upload assets to GH releases diff --git a/.github/workflows/upload-artifacts.yml b/.github/workflows/upload-artifacts.yml index 7919c1ff5..a3d5a7073 100644 --- a/.github/workflows/upload-artifacts.yml +++ b/.github/workflows/upload-artifacts.yml @@ -41,7 +41,7 @@ jobs: env: FILEPATH: upload/rollups-contracts-${{ steps.extract_version.outputs.version }}-anvil-${{ steps.setup.outputs.foundry-version }}.tar.gz - - name: Upload files to GitHub Releases - uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b # v2.5.0 - with: - files: upload/* + - name: Upload assets to release on GitHub + run: gh release upload "$TAG" upload/* --clobber + env: + TAG: ${{ github.ref_name }} From 2709ec546a7b8aa611dc5961109c4608e6f40ef6 Mon Sep 17 00:00:00 2001 From: Guilherme Dantas Date: Wed, 18 Feb 2026 22:53:26 -0300 Subject: [PATCH 2/2] Enter alpha pre-release mode --- .changeset/pre.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .changeset/pre.json diff --git a/.changeset/pre.json b/.changeset/pre.json new file mode 100644 index 000000000..bd729ea5b --- /dev/null +++ b/.changeset/pre.json @@ -0,0 +1,8 @@ +{ + "mode": "pre", + "tag": "alpha", + "initialVersions": { + "@cartesi/rollups": "2.2.0" + }, + "changesets": [] +}