Merge pull request #47 from wednesday-solutions/alenbaby13-patch-1 #9
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
name: Publish Latest | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
publish: | |
# To enable auto publishing to github, update your electron publisher | |
# # config in package.json > "build" and remove the conditional below | |
# if: ${{ github.repository_owner == 'electron-react-boilerplate' }} | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- name: Checkout git repo | |
uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn | |
- name: Build | |
run: yarn build | |
- name: Bump version and push tag | |
run: | | |
cd "$GITHUB_WORKSPACE" | |
git config user.email "[email protected]" | |
git config user.name "$GITHUB_ACTOR" | |
git pull | |
npm version patch | |
git push | |
- name: get-npm-version | |
id: package-version | |
run: | | |
echo "current-version=$(npm pkg get version | sed 's/"//g')" >> $GITHUB_OUTPUT | |
- name: Create Latest Release | |
uses: actions/create-release@latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ steps.package-version.outputs.current-version}} | |
release_name: v${{ steps.package-version.outputs.current-version}} | |
body: ${{ env.COMMIT_MESSAGE }} | |
draft: false | |
prerelease: false | |
- 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 }} | |
EP_DRAFT: false | |
EP_PRE_RELEASE: false | |
run: | | |
yarn run electron-builder -- --publish always --win --mac --linux |