Skip to content

chore(deps-dev): bump ip from 1.1.5 to 1.1.9 #162

chore(deps-dev): bump ip from 1.1.5 to 1.1.9

chore(deps-dev): bump ip from 1.1.5 to 1.1.9 #162

Workflow file for this run

name: Build/release
# on:
# push:
# tags:
# - 'v*'
on: push
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest]
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1
with:
node-version: 14
- name: Install dependencies
run: npm install
#- name: Test electron application
# run: npm run coverage
build:
if: github.ref == 'refs/heads/alpha' || github.ref == 'refs/heads/beta' || github.ref == 'refs/heads/master'
needs: test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest]
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1
with:
node-version: 14
- name: Install dependencies
run: npm install
# - name: Prepare for app notarization
# if: startsWith(matrix.os, 'macos')
# # Import Apple API key for app notarization on macOS
# run: |
# mkdir -p ~/private_keys/
# echo '${{ secrets.api_key }}' > ~/private_keys/AuthKey_${{ secrets.api_key_id }}.p8
- name: Build/release Electron app
uses: samuelmeuli/action-electron-builder@v1
with:
github_token: ${{ secrets.github_token }}
release: true
# mac_certs: ${{ secrets.mac_certs }}
# mac_certs_password: ${{ secrets.mac_certs_password }}
# windows_certs: ${{ secrets.windows_certs }}
# windows_certs_password: ${{ secrets.windows_certs_password }}
# env:
# API_KEY_ID: ${{ secrets.api_key_id }}
# API_KEY_ISSUER_ID: ${{ secrets.api_key_issuer_id }}
# - name: Send Windows store verification
# if: startsWith(matrix.os, 'windows')
# run: "echo 'This is currently disabled. Help needed!'"
# run: ./tasks/win-store-build.cmd
# - name: Build/release Skizzle
# uses: samuelmeuli/action-electron-builder@v1
# with:
# github_token: ${{ secrets.github_token }}
# release: ${{ startsWith(github.ref, 'refs/tags/v') }}