Skip to content
This repository was archived by the owner on Dec 27, 2024. It is now read-only.

Commit 171e8d7

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/electron/rebuild-3.7.1
2 parents 93c0ffb + 1c09e47 commit 171e8d7

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

.github/workflows/build.yml

+7-11
Original file line numberDiff line numberDiff line change
@@ -85,53 +85,49 @@ jobs:
8585
- run: |
8686
corepack enable
8787
yarn -v
88-
if: ${{ needs.version_checker.outputs.VERSION_MATCH == 'false' }}
88+
# if: ${{ needs.version_checker.outputs.VERSION_MATCH == 'false' }}
8989
9090
- name: Check out Git repository
9191
uses: actions/checkout@v4
92-
if: ${{ needs.version_checker.outputs.VERSION_MATCH == 'false' }}
92+
# if: ${{ needs.version_checker.outputs.VERSION_MATCH == 'false' }}
9393

9494
- name: Install Node.js, NPM and Yarn
9595
uses: actions/setup-node@v4
96-
if: ${{ needs.version_checker.outputs.VERSION_MATCH == 'false' }}
96+
# if: ${{ needs.version_checker.outputs.VERSION_MATCH == 'false' }}
9797
with:
9898
node-version: 22
9999
cache: 'yarn'
100100

101101
- run: |
102102
yarn -v
103-
if: ${{ needs.version_checker.outputs.VERSION_MATCH == 'false' }}
103+
# if: ${{ needs.version_checker.outputs.VERSION_MATCH == 'false' }}
104104
105105
# - uses: actions/setup-python@v5
106106
# if: ${{ needs.version_checker.outputs.VERSION_MATCH == 'false' }}
107107
# with:
108108
# python-version: '3.9'
109-
110109
# - run: |
111110
# pip install setuptools
112111
# if: ${{ needs.version_checker.outputs.VERSION_MATCH == 'false' }}
113-
114112
# - name: Install dependencies on Ubuntu
115113
# if: matrix.os == 'ubuntu-latest'
116114
# run: sudo apt-get update && sudo apt-get install libsdl-pango-dev
117-
118115
# - name: Install dependencies on macOS
119116
# if: matrix.os == 'macos-latest'
120117
# run: brew install pkg-config cairo pango libpng jpeg giflib
121-
122118
- run: |
123119
yarn install
124-
if: ${{ needs.version_checker.outputs.VERSION_MATCH == 'false' }}
120+
# if: ${{ needs.version_checker.outputs.VERSION_MATCH == 'false' }}
125121
126122
- name: Build and Publish Electron App
127123
run: yarn build
128-
if: ${{ needs.version_checker.outputs.VERSION_MATCH == 'false' }}
124+
# if: ${{ needs.version_checker.outputs.VERSION_MATCH == 'false' }}
129125
env:
130126
GITHUB_TOKEN: ${{ github.token }}
131127
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
132128

133129
- name: Upload artifacts
134-
if: ${{ needs.version_checker.outputs.VERSION_MATCH == 'false' }}
130+
# if: ${{ needs.version_checker.outputs.VERSION_MATCH == 'false' }}
135131
uses: actions/upload-artifact@v4
136132
with:
137133
name: package-${{ matrix.os }}

0 commit comments

Comments
 (0)