-
Notifications
You must be signed in to change notification settings - Fork 15
54 lines (46 loc) · 1.52 KB
/
create_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
name: Check and Create Release
on:
push:
branches:
- main
workflow_dispatch:
jobs:
check-release:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '14' # Use the Node.js version you need
- name: Install dependencies
run: npm install
- name: Get package.json version
id: get_version
run: echo "PACKAGE_VERSION=$(node -p "require('./package.json').version")" >> $GITHUB_ENV
- name: Get latest release version
id: get_release
run: |
curl -s https://api.github.com/repos/${{ github.repository }}/releases/latest | jq -r '.tag_name' > latest_release.txt
- name: Compare versions
id: compare_versions
run: |
if [ "$(cat latest_release.txt)" != "$PACKAGE_VERSION" ]; then
echo "Version mismatch"
echo "create_release=true" >> $GITHUB_ENV
else
echo "Version matches"
echo "create_release=false" >> $GITHUB_ENV
fi
- name: Create new release
if: env.create_release == 'true'
run: |
CURRENT_DATE=$(date +'%Y-%m-%d %H:%M')
sed -i "s/\$PACKAGE_VERSION/$PACKAGE_VERSION/g" changelog.md
sed -i "s/\$CURRENT_DATE/$CURRENT_DATE/g" changelog.md
gh release create "$PACKAGE_VERSION" linuxdo-scripts.js \
-t "$PACKAGE_VERSION" \
-n "$(cat changelog.md)"
env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}