Skip to content

Commit

Permalink
add commit
Browse files Browse the repository at this point in the history
  • Loading branch information
metelkin committed Jan 8, 2025
1 parent f108899 commit 8ee2186
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,18 @@ jobs:
asset_path: dist/heta-compiler-macos.tar.gz
asset_name: heta-compiler-macos.tar.gz
asset_content_type: application/octet-stream

- name: Commit to homebrew-heta-compiler repos
run: |
git clone git@github.com:hetalang/homebrew-heta-compiler.git
cd homebrew-heta-compiler
git config user.name "GitHub Actions"
git config user.email "actions@github.com"
cp -f ../build-hombrew/heta-compiler.rb Formula/ # copy the new formula and replace the old one
ls
git add .
git commit -m "Automated update from source repository based on release ${{ github.event.release.tag_name }}"
# git push origin master
upload-linux-release-asset:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 8ee2186

Please sign in to comment.