-
Notifications
You must be signed in to change notification settings - Fork 9
84 lines (78 loc) · 3.02 KB
/
onPushToMain.yml
File metadata and controls
84 lines (78 loc) · 3.02 KB
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
# test
name: version, tag and github release
on:
push:
branches: [main]
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
- name: Check if version already exists
id: version-check
shell: bash
run: |
package_name="$(node -p "require('./package.json').name")"
package_version="$(node -p "require('./package.json').version")"
echo "tag=v${package_version}" >>"${GITHUB_OUTPUT}"
gh_exists="$(gh api \
"repos/${{ github.repository }}/releases/tags/v${package_version}" \
>/dev/null 2>&1 && echo 'true' || echo '')"
npm_exists="$(npm view "${package_name}@${package_version}" --json \
>/dev/null 2>&1 && echo 'true' || echo '')"
if [[ -n "$gh_exists" || -n "$npm_exists" ]]; then
echo "::warning file=package.json,line=1::Version v${package_version} already exists—skipping release."
echo "skipped=true" >>"${GITHUB_OUTPUT}"
else
echo "skipped=false" >>"${GITHUB_OUTPUT}"
fi
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Setup git
if: ${{ steps.version-check.outputs.skipped == 'false' }}
run: |
git config --global user.email ${{ secrets.GH_EMAIL }}
git config --global user.name ${{ secrets.GH_USERNAME }}
- name: Generate oclif README
if: ${{ steps.version-check.outputs.skipped == 'false' }}
id: oclif-readme
run: |
npm install
npm exec oclif readme
if [ -n "$(git status --porcelain)" ]; then
git add .
git commit -am "chore: update README.md"
git push -u origin ${{ github.ref_name }}
fi
- name: Create Github Release
uses: ncipollo/release-action@2c591bcc8ecdcd2db72b97d6147f871fcd833ba5
if: ${{ steps.version-check.outputs.skipped == 'false' }}
with:
name: ${{ steps.version-check.outputs.tag }}
tag: ${{ steps.version-check.outputs.tag }}
commit: ${{ github.ref_name }}
token: ${{ secrets.GITHUB_TOKEN }}
skipIfReleaseExists: true
- name: Install dependencies
if: ${{ steps.version-check.outputs.skipped == 'false' }}
run: npm install
- name: Build
if: ${{ steps.version-check.outputs.skipped == 'false' }}
run: npm run build
- name: Prepare package
if: ${{ steps.version-check.outputs.skipped == 'false' }}
run: npm run prepack
- name: Publish to npm
uses: JS-DevTools/npm-publish@19c28f1ef146469e409470805ea4279d47c3d35c
if: ${{ steps.version-check.outputs.skipped == 'false' }}
with:
token: ${{ secrets.NPM_TOKEN }}
- name: Cleanup package
if: ${{ steps.version-check.outputs.skipped == 'false' }}
run: npm run postpack