chore: retry release beta 5
This commit is contained in:
20
.github/workflows/cd.yml
vendored
20
.github/workflows/cd.yml
vendored
@@ -36,16 +36,16 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
app_id: ${{ secrets.RELEASE_BOT_APP_ID }}
|
app_id: ${{ secrets.RELEASE_BOT_APP_ID }}
|
||||||
private_key: ${{ secrets.RELEASE_BOT_PRIVATE_KEY }}
|
private_key: ${{ secrets.RELEASE_BOT_PRIVATE_KEY }}
|
||||||
# - run: npx semantic-release --ci
|
- run: npx semantic-release --ci
|
||||||
# name: Semantic Release
|
name: Semantic Release
|
||||||
# env:
|
env:
|
||||||
# GH_TOKEN: ${{ steps.create_token.outputs.token }}
|
GH_TOKEN: ${{ steps.create_token.outputs.token }}
|
||||||
# - run: yarn build
|
- run: yarn build
|
||||||
# - run: yarn prepare-release
|
- run: yarn prepare-release
|
||||||
# - run: yarn package ${{ matrix.build.task }}
|
- run: yarn package ${{ matrix.build.task }}
|
||||||
# env:
|
env:
|
||||||
# GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
# SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_STORE_CREDENTIALS }}
|
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_STORE_CREDENTIALS }}
|
||||||
update-readme:
|
update-readme:
|
||||||
needs: build
|
needs: build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|||||||
33
package.ts
33
package.ts
@@ -7,12 +7,30 @@ const linuxAppImage: builder.CliOptions = {
|
|||||||
x64: true,
|
x64: true,
|
||||||
ia32: false,
|
ia32: false,
|
||||||
armv7l: true,
|
armv7l: true,
|
||||||
arm64: false,
|
arm64: true,
|
||||||
projectDir: './build/clean',
|
projectDir: './build/clean',
|
||||||
publish: 'always',
|
publish: 'always',
|
||||||
}
|
}
|
||||||
|
|
||||||
const linuxSnap: builder.CliOptions = {
|
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,
|
x64: true,
|
||||||
ia32: false,
|
ia32: false,
|
||||||
armv7l: false,
|
armv7l: false,
|
||||||
@@ -21,18 +39,9 @@ const linuxSnap: builder.CliOptions = {
|
|||||||
publish: 'always',
|
publish: 'always',
|
||||||
}
|
}
|
||||||
|
|
||||||
const winPortable: builder.CliOptions = {
|
|
||||||
x64: true,
|
|
||||||
ia32: true,
|
|
||||||
armv7l: false,
|
|
||||||
arm64: false,
|
|
||||||
projectDir: './build/clean',
|
|
||||||
publish: 'always',
|
|
||||||
}
|
|
||||||
|
|
||||||
const winNsis: builder.CliOptions = {
|
const winNsis: builder.CliOptions = {
|
||||||
x64: true,
|
x64: true,
|
||||||
ia32: true,
|
ia32: false,
|
||||||
armv7l: false,
|
armv7l: false,
|
||||||
arm64: false,
|
arm64: false,
|
||||||
projectDir: './build/clean',
|
projectDir: './build/clean',
|
||||||
@@ -41,7 +50,7 @@ const winNsis: builder.CliOptions = {
|
|||||||
|
|
||||||
const winAppx: builder.CliOptions = {
|
const winAppx: builder.CliOptions = {
|
||||||
x64: true,
|
x64: true,
|
||||||
ia32: true,
|
ia32: false,
|
||||||
armv7l: false,
|
armv7l: false,
|
||||||
arm64: false,
|
arm64: false,
|
||||||
projectDir: './build/clean',
|
projectDir: './build/clean',
|
||||||
|
|||||||
Reference in New Issue
Block a user