Skip to content

Commit

Permalink
Merge pull request #502 from blacklanternsecurity/dev
Browse files Browse the repository at this point in the history
Dev->Main
  • Loading branch information
liquidsec authored Oct 9, 2024
2 parents acaffa0 + e878d87 commit 6d246df
Show file tree
Hide file tree
Showing 3 changed files with 268 additions and 255 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,13 @@ jobs:
if: github.ref == 'refs/heads/main'
uses: pypa/gh-action-pypi-publish@release/v1.5
with:
password: ${{ secrets.PYPI_API_TOKEN }}
password: ${{ secrets.PYPI_API_TOKEN }}
- name: Get current version from Poetry
id: get_version
run: echo "::set-output name=VERSION::$(poetry version --short)"
- name: Create Git tag
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git tag -a "$(echo ${{ steps.get_version.outputs.VERSION }})" -m "Release ${{ steps.get_version.outputs.VERSION }}"
git push origin "$(echo ${{ steps.get_version.outputs.VERSION }})"
Loading

0 comments on commit 6d246df

Please sign in to comment.