-
-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (45 loc) · 2.29 KB
/
update_version_csv2notion-neo.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
name: Update CSV2Notion Neo Formula
on:
workflow_dispatch:
jobs:
update_formula:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Get latest release info
id: get_release
run: |
latest_release_tag=$(curl -sSL https://api.github.com/repos/TheAcharya/csv2notion-neo/releases/latest | jq -r '.tag_name | ltrimstr("v")')
latest_release_url=$(curl -sSL https://api.github.com/repos/TheAcharya/csv2notion-neo/releases/latest | jq -r '.assets[] | select(.name | endswith(".pkg")) | .browser_download_url')
echo "Latest release tag: $latest_release_tag"
echo "Latest release URL: $latest_release_url"
echo "::set-output name=tag::$latest_release_tag"
echo "::set-output name=url::$latest_release_url"
- name: Update formula file
run: |
tag=${{ steps.get_release.outputs.tag }}
url=${{ steps.get_release.outputs.url }}
sha256=$(curl -sSL $url | shasum -a 256 | awk '{print $1}')
echo "Updating formula file with version $tag and sha256 $sha256"
rm Casks/csv2notion-neo.rb
echo 'cask "csv2notion-neo" do' > Casks/csv2notion-neo.rb
echo " version \"$tag\"" >> Casks/csv2notion-neo.rb
echo " sha256 \"$sha256\"" >> Casks/csv2notion-neo.rb
echo " url \"https://github.com/TheAcharya/csv2notion-neo/releases/download/v$tag/CSV2Notion-Neo_$tag.pkg\"" >> Casks/csv2notion-neo.rb
echo ' name "Csv2notionNeo"' >> Casks/csv2notion-neo.rb
echo ' desc "Upload & Merge Data with Attachments to Notion"' >> Casks/csv2notion-neo.rb
echo ' homepage "https://github.com/TheAcharya/csv2notion-neo"' >> Casks/csv2notion-neo.rb
echo '' >> Casks/csv2notion-neo.rb
echo " pkg \"CSV2Notion-Neo_$tag.pkg\"" >> Casks/csv2notion-neo.rb
echo '' >> Casks/csv2notion-neo.rb
echo ' uninstall pkgutil: "co.theacharya.Csv2notionNeo"' >> Casks/csv2notion-neo.rb
echo 'end' >> Casks/csv2notion-neo.rb
# Commit changes
- name: Commit changes
run: |
git config user.name "GitHub Actions"
git config user.email "[email protected]"
git add .
git commit -m "Update csv2notion-neo formula to version ${{ steps.get_release.outputs.tag }}"
git push