Skip to content

Commit

Permalink
chore: retry release beta 5
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Nordquist committed May 11, 2024
1 parent 3c62da7 commit ffc93d2
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 16 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
21 changes: 15 additions & 6 deletions package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,32 @@ 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: false,
arm64: 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: true,
ia32: false,
armv7l: false,
arm64: false,
projectDir: './build/clean',
Expand All @@ -32,7 +41,7 @@ const winPortable: builder.CliOptions = {

const winNsis: builder.CliOptions = {
x64: true,
ia32: true,
ia32: false,
armv7l: false,
arm64: false,
projectDir: './build/clean',
Expand All @@ -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',
Expand Down

0 comments on commit ffc93d2

Please sign in to comment.