Update Neo Formula #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update 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 "VERSION=$latest_release_tag" >> GITHUB_ENV | |
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 " neo_version = \"$tag\"" >> 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 ${{ env.VERSION }}" | |
git push |