Skip to content

Commit

Permalink
release windows
Browse files Browse the repository at this point in the history
  • Loading branch information
cpvalente committed Aug 11, 2021
1 parent e5f619e commit cd0b22a
Showing 1 changed file with 40 additions and 40 deletions.
80 changes: 40 additions & 40 deletions .github/workflows/autobuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

name: CI

# Controls when the action will run.
# Controls when the action will run.
on:
push:
# Pattern matched against refs/tags
tags:
# Push events to every tag not containing /
- '*'
- '*'

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand All @@ -19,7 +19,7 @@ jobs:
buildwin:
# The type of runner that the job will run on
runs-on: windows-latest
env:
env:
CI: ''

# Steps represent a sequence of tasks that will be executed as part of the job
Expand All @@ -31,23 +31,23 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: '14.x'
# install and build react

# install and build react
- name: Install React dependencies
run: yarn install
run: yarn install
working-directory: ./client
- name: Build React App
run: yarn build
working-directory: ./client

# install and build electron
- name: Install Electron + nodejs dependencies
run: yarn install
working-directory: ./server
- name: Build Electron App
run: yarn dist-win
working-directory: ./server

# release
- name: Release
uses: softprops/action-gh-release@v1
Expand All @@ -57,42 +57,42 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

# build a file for mac
buildmac:
# buildmac:
# The type of runner that the job will run on
runs-on: macOS-latest
env:
CI: ''
# runs-on: macOS-latest
# env:
# CI: ''

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# - uses: actions/checkout@v2

# - name: Use Node.js
# uses: actions/setup-node@v1
# with:
# node-version: '14.x'

# install and build react
# - name: Install React dependencies
# run: yarn install
# working-directory: ./client
# - name: Build React App
# run: yarn build
# working-directory: ./client

- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '14.x'

# install and build react
- name: Install React dependencies
run: yarn install
working-directory: ./client
- name: Build React App
run: yarn build
working-directory: ./client

# install and build electron
- name: Install Electron + nodejs dependencies
run: yarn install
working-directory: ./server
- name: Build Electron App
run: yarn dist-win
working-directory: ./server
# - name: Install Electron + nodejs dependencies
# run: yarn install
# working-directory: ./server
# - name: Build Electron App
# run: yarn dist-win
# working-directory: ./server

# release
- name: Release
uses: softprops/action-gh-release@v1
with:
files: ./server/dist/ontime-macOS.dmg
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - name: Release
# uses: softprops/action-gh-release@v1
# with:
# files: ./server/dist/ontime-macOS.dmg
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit cd0b22a

Please sign in to comment.