From 7680a3aa5867fe01228459729734c8c581e66cfa Mon Sep 17 00:00:00 2001 From: Julian Gruber Date: Wed, 31 Jan 2024 02:34:37 -0800 Subject: [PATCH 1/2] ci: add publish (#52) * ci: add publish * fix: don't publish prereleases * Update .github/workflows/publish.yml --- .github/workflows/publish.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..b017886 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,17 @@ +name: Publish +on: + release: + types: [released] +jobs: + publish: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: curl -L ${{ github.event.release.tarball_url }} > source.tar.gz + - uses: filecoin-station/publish-zinnia-module-action@v0 + with: + source: source.tar.gz + w3up-private-key: ${{ secrets.W3UP_PRIVATE_KEY }} + w3up-proof: ${{ secrets.W3UP_PROOF }} + w3name-private-key: ${{ secrets.W3NAME_PRIVATE_KEY }} + w3name-revision: ${{ secrets.W3NAME_REVISION }} From 74e69e0cc1d3c08f8c2692ae9cf9fcd4c7271e91 Mon Sep 17 00:00:00 2001 From: Julian Gruber Date: Wed, 31 Jan 2024 11:35:59 +0100 Subject: [PATCH 2/2] v1.7.1 --- lib/constants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/constants.js b/lib/constants.js index 48081a4..abacd0d 100644 --- a/lib/constants.js +++ b/lib/constants.js @@ -1,3 +1,3 @@ -export const SPARK_VERSION = '1.7.0' +export const SPARK_VERSION = '1.7.1' export const MAX_CAR_SIZE = 200 * 1024 * 1024 // 200 MB export const APPROX_ROUND_LENGTH_IN_MS = 60 * 60_000 // 1 hour