This repository has been archived by the owner on Aug 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
135 lines (114 loc) · 3.75 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
name: Release
on:
workflow_dispatch:
inputs:
version:
description: 'Tag/Version'
required: true
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: 12.x
registry-url: "https://registry.npmjs.org"
- name: Fetch git tags
run: git fetch --tags --force
- name: Cache esy dependencies
uses: actions/cache@v1
id: cache
with:
path: _export
key: ${{ runner.OS }}-build-${{ hashFiles('esy.lock/index.json') }}
restore-keys: |
${{ runner.OS }}-build-${{ env.cache-name }}-
${{ runner.OS }}-build-
${{ runner.OS }}-
- name: Install esy
run: npm i -g [email protected]
- name: Import dependencies
if: steps.cache.outputs.cache-hit == 'true'
run: esy import-build _export/*
- name: Install deps
run: esy install
- name: Build app
run: esy build
- name: Export dependencies
run: esy export-dependencies
- name: Upload artifacts for ${{ matrix.os }}
uses: actions/upload-artifact@master
with:
name: ${{ matrix.os }}
path: _build/default/src/findr.exe
publish:
needs: build
name: Publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: Make _release folder
run: node scripts/make-release.js
- name: Download linux artifacts
uses: actions/download-artifact@master
with:
name: ubuntu-latest
path: _release/platform-linux-x64
- name: Download mac artifacts
uses: actions/download-artifact@master
with:
name: macos-latest
path: _release/platform-darwin-x64
- name: Create archives for Github release
run: |
cd _release/platform-darwin-x64
zip -r ../../findr-darwin-x64.zip .
cd ../..
cd _release/platform-linux-x64
zip -r ../../findr-linux-x64.zip .
cd ../..
- name: Create Github release
id: create_release
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
tag_name: ${{ github.event.inputs.version }}
release_name: Release ${{ github.event.inputs.version }}
draft: false
prerelease: false
- name: Upload findr-darwin-x64.zip to Github release
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: findr-darwin-x64.zip
asset_name: findr-darwin-x64.zip
asset_content_type: application/gzip
- name: Upload findr-linux-x64.zip to Github release
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: findr-linux-x64.zip
asset_name: findr-linux-x64.zip
asset_content_type: application/gzip
- name: Release npm package
run: |
npm config set //registry.npmjs.org/:_authToken=$NPM_AUTH_TOKEN
npm config set scope "@vmarcosp"
npm publish --access public
working-directory: ./_release
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}