-
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (46 loc) · 1.61 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
on:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
outputs:
release_created: ${{ steps.release.outputs.release_created }}
release_tag: ${{ steps.release.outputs.tag_name }}
major: ${{ steps.release.outputs.major }}
minor: ${{ steps.release.outputs.minor }}
patch: ${{ steps.release.outputs.patch }}
steps:
- uses: google-github-actions/release-please-action@v4
id: release
with:
token: ${{ secrets.MY_RELEASE_PLEASE_TOKEN }}
release-type: node
okay-release-windows:
needs: release-please
if: needs.release-please.outputs.release_created
runs-on: windows-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Dump runner context
env:
RUNNER_TARGET: mterm-${{ needs.release-please.outputs.major}}.${{ needs.release-please.outputs.minor}}.${{ needs.release-please.outputs.patch}}-beta-setup.exe
run: echo "$RUNNER_TARGET"
- name: install
uses: borales/actions-yarn@v4
with:
cmd: install
- name: build
uses: borales/actions-yarn@v4
with:
cmd: build:win
- name: Upload Release Artifact
env:
GITHUB_TOKEN: ${{ secrets.MY_RELEASE_PLEASE_TOKEN }}
run: gh release upload ${{ needs.release-please.outputs.release_tag }} ./dist/mterm-${{ needs.release-please.outputs.major}}.${{ needs.release-please.outputs.minor}}.${{ needs.release-please.outputs.patch}}-beta-setup.exe