Skip to content

Commit

Permalink
feat: release
Browse files Browse the repository at this point in the history
debuging
  • Loading branch information
AtticusZeller authored Jan 13, 2024
2 parents cecd1e3 + e01ae29 commit e198aef
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,10 @@ jobs:
- run: poetry install
- run: poetry run pytest

- name: Upload Coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

semantic-release:
name: Semantic Release and Publish
Expand All @@ -52,11 +54,12 @@ jobs:
latest-changes:
name: Latest Changes
runs-on: ubuntu-latest
if: github.event_name == 'pull_request' && github.ref == 'refs/heads/main' && github.event.pull_request.merged == true && github.event_name == 'push'
if: (github.event_name == 'push' && github.ref == 'refs/heads/main') || (github.event_name == 'pull_request' && github.ref == 'refs/heads/main' && github.event.pull_request.merged == true)
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.ATTICUS_PAT }}
- uses: docker://tiangolo/latest-changes:0.2.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "chore: update README.md"

0 comments on commit e198aef

Please sign in to comment.