Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
with:
command: generate
api-key: ${{ secrets.GEMINI_API_KEY }}
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: Create and push tag
run: |
Expand Down
66 changes: 0 additions & 66 deletions .github/workflows/reviewforge.yml

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ Thumbs.db

# Test
coverage.out
reviewforge_bin
5 changes: 3 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,9 @@ runs:
# Download and extract the specific binary (Public asset, no token needed)
URL="https://github.com/AxeForging/reviewforge/releases/download/${VERSION}/reviewforge-${OS}-${ARCH}.tar.gz"
echo "Downloading $URL..."
curl -sSL "$URL" | tar -xz
mv "reviewforge-${OS}-${ARCH}" reviewforge_bin
curl -sSL "$URL" -o /tmp/reviewforge.tar.gz
tar -xzf /tmp/reviewforge.tar.gz -C /tmp
mv /tmp/reviewforge reviewforge_bin
chmod +x reviewforge_bin

- name: Run ReviewForge
Expand Down