Bump version #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
tags: | |
- 'v*.*.*' | |
name: Distribute Electron Application | |
jobs: | |
distribute: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: actions/setup-node@master | |
with: | |
node-version: 18 | |
- name: Install Dependencies | |
run: npm install | |
- name: Build and Release Application | |
run: npm run build:mac | |
env: | |
APPLE_ID: "${{ secrets.apple_id }}" | |
APPLE_APP_SPECIFIC_PASSWORD: "${{ secrets.apple_app_specific_password }}" | |
CSC_LINK: "${{ secrets.mac_certs }}" | |
CSC_KEY_PASSWORD: "${{ secrets.mac_certs_password }}" | |
TEAM_ID: "${{ secrets.team_id }}" | |
GH_TOKEN: "${{ secrets.gh_token }}" |