Skip to content

Commit 80ce081

Browse files
committed
fixes
1 parent aa929af commit 80ce081

File tree

1 file changed

+51
-51
lines changed

1 file changed

+51
-51
lines changed

.github/workflows/package.yaml

Lines changed: 51 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -3,64 +3,64 @@ name: Package
33
on: [push, pull_request]
44

55
jobs:
6-
package-mac:
7-
# Notarization is taking too long, exit
8-
timeout-minutes: 30
9-
runs-on: macos-latest
10-
steps:
11-
- name: Check out Git repository
12-
uses: actions/checkout@v3
6+
# package-mac:
7+
# # Notarization is taking too long, exit
8+
# timeout-minutes: 30
9+
# runs-on: macos-latest
10+
# steps:
11+
# - name: Check out Git repository
12+
# uses: actions/checkout@v3
1313

14-
- name: Install Node.js and NPM
15-
uses: actions/setup-node@v3
16-
with:
17-
node-version: 20
18-
cache: npm
14+
# - name: Install Node.js and NPM
15+
# uses: actions/setup-node@v3
16+
# with:
17+
# node-version: 20
18+
# cache: npm
1919

20-
- name: npm install
21-
run: |
22-
npm install
20+
# - name: npm install
21+
# run: |
22+
# npm install
2323

24-
# Use the `nick-fields/retry` (https://github.com/nick-fields/retry) to retry the command
25-
# in case the code signing fails due to network errors.
26-
- uses: nick-fields/retry@v2
27-
name: Package and Upload to S3
28-
with:
29-
timeout_minutes: 30
30-
max_attempts: 2
31-
command: npm run package:publish
32-
env:
33-
# Uncomment the following environment variables when enabling code signing for macOS: # APPLE_ID: ${{ secrets.APPLE_ID }}
34-
# APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }}
35-
# APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
36-
# CSC_LINK: ${{ secrets.CSC_LINK }}
37-
# CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
38-
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
39-
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
24+
# # Use the `nick-fields/retry` (https://github.com/nick-fields/retry) to retry the command
25+
# # in case the code signing fails due to network errors.
26+
# - uses: nick-fields/retry@v2
27+
# name: Package and Upload to S3
28+
# with:
29+
# timeout_minutes: 30
30+
# max_attempts: 2
31+
# command: npm run package:publish
32+
# env:
33+
# # Uncomment the following environment variables when enabling code signing for macOS: # APPLE_ID: ${{ secrets.APPLE_ID }}
34+
# # APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }}
35+
# # APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
36+
# # CSC_LINK: ${{ secrets.CSC_LINK }}
37+
# # CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
38+
# AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
39+
# AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
4040

41-
package-windows:
42-
timeout-minutes: 30
43-
runs-on: windows-latest
44-
steps:
45-
- name: Check out Git repository
46-
uses: actions/checkout@v3
41+
# package-windows:
42+
# timeout-minutes: 30
43+
# runs-on: windows-latest
44+
# steps:
45+
# - name: Check out Git repository
46+
# uses: actions/checkout@v3
4747

48-
- name: Install Node.js and NPM
49-
uses: actions/setup-node@v3
50-
with:
51-
node-version: 20
52-
cache: npm
48+
# - name: Install Node.js and NPM
49+
# uses: actions/setup-node@v3
50+
# with:
51+
# node-version: 20
52+
# cache: npm
5353

54-
- name: npm install
55-
run: |
56-
npm install
54+
# - name: npm install
55+
# run: |
56+
# npm install
5757

58-
- name: Package and Upload to S3
59-
run: |
60-
npm run package:publish
61-
env:
62-
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
63-
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
58+
# - name: Package and Upload to S3
59+
# run: |
60+
# npm run package:publish
61+
# env:
62+
# AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
63+
# AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
6464

6565
package-linux:
6666
timeout-minutes: 30

0 commit comments

Comments
 (0)