From ffc93d20d88566d561628c986fd14dbb4dfa9e4d Mon Sep 17 00:00:00 2001 From: Thomas Nordquist Date: Sat, 11 May 2024 21:17:47 +0200 Subject: [PATCH] chore: retry release beta 5 --- .github/workflows/cd.yml | 20 ++++++++++---------- package.ts | 33 +++++++++++++++++++++------------ 2 files changed, 31 insertions(+), 22 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 052bcf3..5758a4f 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -36,16 +36,16 @@ jobs: with: app_id: ${{ secrets.RELEASE_BOT_APP_ID }} private_key: ${{ secrets.RELEASE_BOT_PRIVATE_KEY }} - # - run: npx semantic-release --ci - # name: Semantic Release - # env: - # GH_TOKEN: ${{ steps.create_token.outputs.token }} - # - run: yarn build - # - run: yarn prepare-release - # - run: yarn package ${{ matrix.build.task }} - # env: - # GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - # SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_STORE_CREDENTIALS }} + - run: npx semantic-release --ci + name: Semantic Release + env: + GH_TOKEN: ${{ steps.create_token.outputs.token }} + - run: yarn build + - run: yarn prepare-release + - run: yarn package ${{ matrix.build.task }} + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_STORE_CREDENTIALS }} update-readme: needs: build runs-on: ubuntu-latest diff --git a/package.ts b/package.ts index a746fc6..dc3b8dd 100644 --- a/package.ts +++ b/package.ts @@ -7,12 +7,30 @@ const linuxAppImage: builder.CliOptions = { x64: true, ia32: false, armv7l: true, - arm64: false, + arm64: true, projectDir: './build/clean', publish: 'always', } const linuxSnap: builder.CliOptions = { + x64: true, + ia32: false, + armv7l: true, + arm64: true, + projectDir: './build/clean', + publish: 'always', +} + +const linuxDeb: builder.CliOptions = { + x64: true, + ia32: false, + armv7l: true, + arm64: true, + projectDir: './build/clean', + publish: 'always', +} + +const winPortable: builder.CliOptions = { x64: true, ia32: false, armv7l: false, @@ -21,18 +39,9 @@ const linuxSnap: builder.CliOptions = { publish: 'always', } -const winPortable: builder.CliOptions = { - x64: true, - ia32: true, - armv7l: false, - arm64: false, - projectDir: './build/clean', - publish: 'always', -} - const winNsis: builder.CliOptions = { x64: true, - ia32: true, + ia32: false, armv7l: false, arm64: false, projectDir: './build/clean', @@ -41,7 +50,7 @@ const winNsis: builder.CliOptions = { const winAppx: builder.CliOptions = { x64: true, - ia32: true, + ia32: false, armv7l: false, arm64: false, projectDir: './build/clean',