Skip to content

Commit

Permalink
ci: better release
Browse files Browse the repository at this point in the history
  • Loading branch information
Pilou97 committed Feb 15, 2024
1 parent c49fb11 commit 8465322
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,18 @@ on:
- main
tags:
- '**' # TODO: add a good pattern match on version XX.XX.XX
permissions:
contents: write

jobs:
publish:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags')
steps:
- uses: actions/checkout@v3
with:
ref: 'main'
token: ${{ secrets.GIT_TOKEN }}
- name: Installing cargo-edit
run: cargo install cargo-edit
# TODO: check if tag is superior than the current version
Expand All @@ -26,6 +31,7 @@ jobs:
git config --global user.name "pilou"
git add .
git commit -m "release $GITHUB_REF_NAME"
git push --force
- name: cargo login
run: cargo login ${{ secrets.CRATES_IO_API_TOKEN }}
- name: Publishing
Expand Down

0 comments on commit 8465322

Please sign in to comment.