nodeguy/.github/workflows/latest.yml
Atul R a84bc69a26
Adds prebuilt binary builder setup (#366)
* Prebuilt setup (#3)

* Adds prebuild

* Adds prebuild

* fix branch name

* adds prebuild upload

* fix windows build and performance bump for prebuild

* remove pre-release

* adds updated

* edited

* test

* move to all platforms

* change to master

* change to release event

* install qode explicitly

* Adds npm skip build flag

* Adds build triggers

* Repo dispatchs

* change to all events

* Update prebuild.yml

* test

* fix prevuild

* test

* test

* change to master release

* change to nodegui

* change the master tag check

* adds conditional before overwriting NAPI_VERSION
2020-01-24 19:11:01 +01:00

46 lines
1.8 KiB
YAML

on:
push:
branches:
- master # Push events on master branch
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-18.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: '13.x'
- name: Install deps
run: npm install --ignore-scripts
- name: Build nodegui
run: npx tsc
- name: Archive using npm pack
run: npm --no-git-tag-version version 0.0.0-latest-master && npm pack
- uses: actions/upload-artifact@v1
with:
name: latest-release
path: nodegui-nodegui-0.0.0-latest-master.tgz
- uses: nodegui/create-release@master
with:
token: ${{ secrets.GITHUB_TOKEN }}
code: v0.0.0-latest-master
name: Latest Master Release
body: >
Latest auto release corresponding to commit ${{github.sha}} 🔥.
To install do:
`npm install https://github.com/nodegui/nodegui/releases/download/v0.0.0-latest-master/nodegui-master.tgz`
assets: >
nodegui-nodegui-0.0.0-latest-master.tgz:nodegui-master.tgz:application/tar+gzip
recreate: true
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v1
with:
token: ${{ secrets.REPO_ACCESS_TOKEN }}
repository: nodegui/nodegui
event-type: on-demand-build
client-payload: '{"ref": "${{ github.ref }}","tag": "v0.0.0-latest-master"}'