trigger-workflow-event #3
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 Homebrew Formula | |
on: | |
repository_dispatch: | |
types: [trigger-workflow-event] | |
jobs: | |
update-formula: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Update formula | |
run: | | |
SHA256_LINUX=$(curl -L https://storage.googleapis.com/fireworks-public/firectl/stable/linux-amd64.gz | sha256sum | cut -d' ' -f1) | |
SHA256_DARWIN_AMD64=$(curl -L https://storage.googleapis.com/fireworks-public/firectl/stable/darwin-amd64.gz | sha256sum | cut -d' ' -f1) | |
SHA256_DARWIN_ARM64=$(curl -L https://storage.googleapis.com/fireworks-public/firectl/stable/darwin-arm64.gz | sha256sum | cut -d' ' -f1) | |
# Replace sha256 variables in the formula | |
sed -i "s|sha256 \".*\" # Linux|sha256 \"$SHA256_LINUX\" # Linux|" Formula/firectl.rb | |
sed -i "s|sha256 \".*\" # Darwin AMD64|sha256 \"$SHA256_DARWIN_AMD64\" # Darwin AMD64|" Formula/firectl.rb | |
sed -i "s|sha256 \".*\" # Darwin ARM64|sha256 \"$SHA256_DARWIN_ARM64\" # Darwin ARM64|" Formula/firectl.rb | |
- name: Commit changes | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Actions Bot" | |
git add Formula/firectl.rb | |
git commit -m "Update Formula for ${{ github.GITHUB_REF }}" | |
git push |