-
Notifications
You must be signed in to change notification settings - Fork 0
executable file
·43 lines (35 loc) · 1.06 KB
/
publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# name: Publish
# on:
# push:
# branches:
# - main
# jobs:
# publish:
# runs-on: ${{ matrix.os }}
# strategy:
# matrix:
# os: [macos-latest]
# steps:
# - name: Checkout git repo
# uses: actions/checkout@v1
# - name: Install Node and NPM
# uses: actions/setup-node@v1
# with:
# node-version: 16
# cache: npm
# - name: Install dependencies
# run: |
# npm install
# - name: Publish releases
# env:
# # These values are used for auto updates signing
# # APPLE_ID: ${{ secrets.APPLE_ID }}
# # APPLE_ID_PASS: ${{ secrets.APPLE_ID_PASS }}
# # CSC_LINK: ${{ secrets.CSC_LINK }}
# # CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
# # This is used for uploading release assets to github
# # GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# DO_KEY_ID: ${{ secrets.DO_KEY_ID }}
# DO_SECRET_KEY: ${{ secrets.DO_SECRET_KEY }}
# run: |
# npm run package