-
-
Notifications
You must be signed in to change notification settings - Fork 0
143 lines (116 loc) · 4.62 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
136
137
138
139
140
141
142
143
###############################################################################
# RELEASE
###############################################################################
name: 🚀 Release packages
on:
# push:
# branches:
# - main
workflow_dispatch:
concurrency: ${{ github.workflow }}-${{ github.ref }}
env:
GITHUB_TOKEN: ${{ github.token }}
NPM_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
CORE_NAME: binarium
###############################################################################
# JOBS
###############################################################################
jobs:
release-lib:
name: 🚀 Release
runs-on: macos-latest
timeout-minutes: 10
steps:
#########################################################################
# INIT & INSTALL
#########################################################################
- name: ⬇️ Checkout
uses: actions/checkout@v4
- name: '📦 Setup jq'
uses: dcarbone/install-jq-action@v2
- name: 🟢 Setup node
uses: actions/setup-node@v3
with:
node-version: 20
- name: 🥡 Install pnpm
uses: pnpm/action-setup@v3
- name: Check GitHub API Rate Limit
id: rate_limit
run: |
response=$(gh api rate_limit)
limit=$(echo $response | jq -r '.resources.core.limit')
remaining=$(echo $response | jq -r '.resources.core.remaining')
echo "GitHub API Rate Limit: $remaining/$limit"
if [ "$remaining" -lt 10 ]; then
exit 1
fi
env:
GH_TOKEN: ${{ env.GITHUB_TOKEN }}
- name: 🧩 Install dependencies
run: |
pnpm install --no-frozen-lockfile --ignore-scripts
#########################################################################
# BUILD
#########################################################################
- name: 🏗 Build
run: |
pnpm build
#########################################################################
# PUBLISH
#########################################################################
- name: 📣 Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
title: "chore(release): version packages 🦋"
publish: pnpm exec changeset publish
version: pnpm exec changeset version
commit: "chore(release): version packages 🦋 [skip ci]"
createGithubReleases: false
env:
GITHUB_TOKEN: ${{ env.GITHUB_TOKEN }}
NPM_TOKEN: ${{ env.NPM_TOKEN }}
- name: Get updated versions if exists
id: updated
run: |
core_version=$(echo '${{ steps.changesets.outputs.publishedPackages }}' | jq -r 'map(select(.name == "${{ env.CORE_NAME}}")) | .[0].version // empty' )
core_version_major=${core_version%%.*}
echo Set changesets outputs
echo '${{ steps.changesets.outputs }}'
echo Set updated versions
echo "core_version=$core_version" >> $GITHUB_OUTPUT
echo "core_major_version=$core_version_major" >> $GITHUB_OUTPUT
- name: ℹ️➡️ Check for changes in package.json
run: |
git fetch origin main
git diff --name-only HEAD origin/main | grep 'package.json' || echo "No changes in package.json"
continue-on-error: true
id: check_package_json
- name: ℹ️🐙😺➡️ Update repo info
if: steps.check_package_json.outputs.stdout != 'No changes in package.json'
run: pnpm . gh info update
continue-on-error: true
- name: 📚🐙😺➡️ Call to workflow for deploy Documentation
if: steps.updated.outputs.core_version != ''
uses: benc-uk/workflow-dispatch@v1
with:
workflow: release-docs.yml
inputs: '{ "version": "${{ steps.updated.outputs.core_version }}"}'
continue-on-error: true
- name: Release binary
if: ${{ steps.updated.outputs.core_version != '' }}
uses: ncipollo/release-action@v1
with:
tag: "v${{ steps.updated.outputs.core_version }}"
draft: false
prerelease: false
allowUpdates: true
omitBodyDuringUpdate: true
- name: Tag Repo
if: ${{ steps.updated.outputs.core_major_version != '' }}
uses: richardsimko/update-tag@v1
with:
tag_name: v${{ steps.updated.outputs.core_major_version}}
env:
GITHUB_TOKEN: ${{ env.GITHUB_TOKEN }}
###############################################################################