Skip to content

push action

push action #6

Workflow file for this run

name: Publish Binaries
on:
workflow_dispatch:
push:
tags:
- '*'
branches:
- main
pull_request:
branches:
- main
env:
RELEASE_VERSION: ${{ github.event.inputs.version }}
IS_PRERELEASE: ${{ contains(github.event.inputs.version, 'alpha') || contains(github.event.inputs.version, 'beta') }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
build-electron-windows:
runs-on: windows-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- name: Node 18
uses: actions/setup-node@v3
with:
node-version: 18
- name: Build UI
working-directory: .
env:
NODE_OPTIONS: "--max_old_space_size=6144"
run: |
npm ci
npm run app-package
Compress-Archive -Path packages\insomnia\dist\win-unpacked\* -DestinationPath rest.ground-"$env:RELEASE_VERSION".zip
- name: Publish
uses: ncipollo/release-action@v1
if: ${{ startsWith(github.ref, 'refs/tags/') }}
with:
artifacts: "packages/insomnia/dist/*.exe,packages/insomnia/dist/squirrel-windows/*.exe,./*.zip"
allowUpdates: true
updateOnlyUnreleased: true
- name: Archive artifacts
uses: actions/upload-artifact@v4
with:
name: artifacts
path: |-
packages/insomnia/dist/*.exe
packages/insomnia/dist/squirrel-windows/*.exe
./*.zip