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": [] +} 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 }}