Skip to content

Commit

Permalink
docs: Update rust.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Tahinli authored Sep 17, 2023
1 parent 3c0ca42 commit c6d4d64
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,26 +17,26 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@latest
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

- name: Conventional
id: changelog_id
uses: TriPSs/conventional-changelog-action@v4
uses: TriPSs/conventional-changelog-action@latest
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Release
id: release_id
uses: actions/create-release@v1
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
with:
tag_name: ${{ steps.changelog_id.outputs.tag }}
release_name: ${{ github.event.release.tag_name }}
body: ${{ steps.changelog_id.outputs.clean_changelog }}
name: ${{ steps.changelog_id.outputs.tag }}
body: ${{steps.changelog_id.outputs.clean_changelog}}


0 comments on commit c6d4d64

Please sign in to comment.