Electron Release workflow for GitHub Actions
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: Electron CD | |
on: [push] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macOS-10.14, windows-2016, ubuntu-18.04] | |
steps: | |
- name: Context | |
env: | |
GITHUB_CONTEXT: ${{ toJson(github) }} | |
run: echo "$GITHUB_CONTEXT" | |
- uses: actions/checkout@v1 | |
with: | |
fetch-depth: 1 | |
- name: Use Node.js 10.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 10.x | |
- name: yarn install | |
run: | | |
yarn install | |
- name: Publish | |
run: | | |
yarn run dist | |
- name: Cleanup artifacts | |
run: | | |
npx rimraf "dist/!(*.exe|*.deb|*.AppImage|*.dmg)" | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v1 | |
with: | |
name: ${{ matrix.os }} | |
path: dist | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: "dist/**" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
I get this - So annoying
Cleanup artifacts0s ##[error]Process completed with exit code 1. Run npx rimraf "dist/!(*.exe|*.deb|*.AppImage|*.dmg)" npx rimraf "dist/!(*.exe|*.deb|*.AppImage|*.dmg)" shell: C:\Program Files\PowerShell\6\pwsh.EXE -command ". '{0}'" '*.deb' is not recognized as an internal or external command, operable program or batch file. ##[error]Process completed with exit code 1.
anybody found a fix?
me too
It works. Avoid using |
operator at windows(powershell)
...
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
...
- name: Cleanup artifacts
if: matrix.os != 'windows-latest'
run: |
mkdir artifacts
mv "dist/(*.exe,*.deb,*.AppImage,*.dmg)" artifacts || true
- name: Cleanup artifacts Win
if: matrix.os == 'windows-latest'
run: |
mkdir artifacts
mv dist/*.exe artifacts
- name: Upload artifacts
uses: actions/upload-artifact@v1
with:
name: ${{matrix.os}}
path: artifacts
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: "artifacts/**"
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
I ended up doing 2 different flows dependant on OS. I'll have a look at the latest one and see how that fairs.
Thanks @vipzero, that worked like a charm.
yarn run dist command not found, any idea ?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I get this - So annoying
anybody found a fix?