-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ea3e914
commit 6c7bf80
Showing
4 changed files
with
5 additions
and
20 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,6 @@ jobs: | |
latest_release_tag=$(curl -sSL https://api.github.com/repos/TheAcharya/Airlift/releases/latest | jq -r '.tag_name | ltrimstr("v")') | ||
latest_release_url=$(curl -sSL https://api.github.com/repos/TheAcharya/Airlift/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" | ||
|
@@ -36,7 +35,6 @@ jobs: | |
echo 'cask "airlift" do' > Casks/airlift.rb | ||
echo " version \"$tag\"" >> Casks/airlift.rb | ||
echo " sha256 \"$sha256\"" >> Casks/airlift.rb | ||
echo " airlift_version = \"$tag\"" >> Casks/airlift.rb | ||
echo " url \"https://github.com/TheAcharya/Airlift/releases/download/v$tag/Airlift_$tag.pkg\"" >> Casks/airlift.rb | ||
echo ' name "Airlift"' >> Casks/airlift.rb | ||
echo ' desc "Upload & Merge Data with Attachments to Airtable"' >> Casks/airlift.rb | ||
|
@@ -53,5 +51,5 @@ jobs: | |
git config user.name "GitHub Actions" | ||
git config user.email "[email protected]" | ||
git add . | ||
git commit -m "Update Airlift formula to version ${{ env.VERSION }}" | ||
git commit -m "Update Airlift formula to version ${{ steps.get_release.outputs.tag }}" | ||
git push |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,6 @@ jobs: | |
latest_release_tag=$(curl -sSL https://api.github.com/repos/TheAcharya/MarkersExtractor/releases/latest | jq -r '.tag_name | ltrimstr("v")') | ||
latest_release_url=$(curl -sSL https://api.github.com/repos/TheAcharya/MarkersExtractor/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" | ||
|
@@ -35,13 +34,12 @@ jobs: | |
echo 'cask "markers-extractor" do' > Casks/markers-extractor.rb | ||
echo " version \"$tag\"" >> Casks/markers-extractor.rb | ||
echo " sha256 \"$sha256\"" >> Casks/markers-extractor.rb | ||
echo " markers_cli_ver = \"$tag\"" >> Casks/markers-extractor.rb | ||
echo " url \"https://github.com/TheAcharya/MarkersExtractor/releases/download/#{tag}/markers-extractor-cli-#{tag}.pkg\"" >> Casks/markers-extractor.rb | ||
echo " url \"https://github.com/TheAcharya/MarkersExtractor/releases/download/v$tag/markers-extractor-cli-$tag.pkg\"" >> Casks/markers-extractor.rb | ||
echo ' name "MarkersExtractor"' >> Casks/markers-extractor.rb | ||
echo ' desc "Extract Markers from Final Cut Pro FCPXML"' >> Casks/markers-extractor.rb | ||
echo ' homepage "https://github.com/TheAcharya/MarkersExtractor"' >> Casks/markers-extractor.rb | ||
echo '' >> Casks/markers-extractor.rb | ||
echo " pkg \"markers-extractor-cli-#{tag}.pkg\"" >> Casks/markers-extractor.rb | ||
echo " pkg \"markers-extractor-cli-$tag.pkg\"" >> Casks/markers-extractor.rb | ||
echo '' >> Casks/markers-extractor.rb | ||
echo ' uninstall pkgutil: "co.theacharya.MarkersExtractor"' >> Casks/markers-extractor.rb | ||
echo 'end' >> Casks/markers-extractor.rb | ||
|
@@ -52,5 +50,5 @@ jobs: | |
git config user.name "GitHub Actions" | ||
git config user.email "[email protected]" | ||
git add . | ||
git commit -m "Updated markers-extractor formula to version ${{ env.VERSION }}" | ||
git commit -m "Updated markers-extractor formula to version ${{ steps.get_release.outputs.tag }}" | ||
git push |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,6 @@ jobs: | |
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" | ||
|
@@ -36,7 +35,6 @@ jobs: | |
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 | ||
|
@@ -54,5 +52,5 @@ jobs: | |
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 commit -m "Update csv2notion-neo formula to version ${{ steps.get_release.outputs.tag }}" | ||
git push |
This file was deleted.
Oops, something went wrong.