Skip to content

Commit

Permalink
Fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
liulifox233 committed Dec 22, 2024
1 parent ac1d3d8 commit f564963
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/formula_generator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Get byrdocs-cli version
id: get_version
run: echo "version=$(pip list --format freeze | grep byrdocs_cli | cut -d'=' -f3)" >> "$GITHUB_ENV"
run: echo "version=$(pip list --format freeze | grep byrdocs_cli | cut -d'=' -f3)" >> "$GITHUB_OUTPUT"

- name: Generate formula
run: python -m poet -f byrdocs-cli > byrdocs-cli.rb
Expand All @@ -38,5 +38,5 @@ jobs:
run: |
git add byrdocs-cli.rb
git commit -m "Update byrdocs-cli formula to version ${{ steps.get_version.outputs.version }}"
git tag -a "v${{ steps.get_version.outputs.version }}"
git tag "v${{ steps.get_version.outputs.version }}"
git push origin --tags

0 comments on commit f564963

Please sign in to comment.