Skip to content

Commit

Permalink
chore: Disable Windows build and releases
Browse files Browse the repository at this point in the history
As Windows app requires code signing with expensive certificates,
we will only build and release official linux and macos versions
of mini video me.

The windows app will still be maintained but the user will have to
build it manually by downloading the source code and running the
app with Node.js.
  • Loading branch information
diego3g committed Jun 2, 2021
1 parent 6aa0435 commit bd91faf
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ jobs:
- name: Build
run: yarn make

build_on_win:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@master
with:
node-version: 14
- uses: bahmutov/npm-install@v1
- name: Build
run: yarn make
# build_on_win:
# runs-on: windows-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions/setup-node@master
# with:
# node-version: 14
# - uses: bahmutov/npm-install@v1
# - name: Build
# run: yarn make
24 changes: 12 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: yarn release

publish_on_win:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@master
with:
node-version: 14
- uses: bahmutov/npm-install@v1
- name: Publish release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: yarn release
# publish_on_win:
# runs-on: windows-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions/setup-node@master
# with:
# node-version: 14
# - uses: bahmutov/npm-install@v1
# - name: Publish release
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# run: yarn release

0 comments on commit bd91faf

Please sign in to comment.