Skip to content

ci: give permission to create tags #37

ci: give permission to create tags

ci: give permission to create tags #37

Workflow file for this run

---
name: CI on Main
on:
push:
branches:
- main
jobs:
test:
name: Test Suite
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: run cargo test
run: cargo test
get-next-version:
name: Get the next version
runs-on: ubuntu-latest
outputs:
version : ${{ steps.semantic-version.outputs.version }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: paulhatch/semantic-version@976ff820fcdca81ffc95e385a07b7eff05ddccc3
id: semantic-version
with:
tag_prefix: "v"
major_pattern: "/^breaking change:/"
major_regexp_flags: "ig"
minor_pattern: "/^feat:/"
minor_regexp_flags: "ig"
version_format: "${major}.${minor}.${patch}"
bump_each_commit: false
search_commit_body: true
enable_prerelease_mode: true
release:
name: Publish a new release
needs:
get-next-version
# test
permissions:
contents: write
runs-on: ubuntu-latest
env:
next-version: ${{ needs.get-next-version.outputs.version }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Print the next version
run: |
echo "The next version is ${{ env.next-version }}"
- name: Patch the Cargo version
run: |
echo "TODO"
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Publish new Cargo version
run: |
cargo publish --dry-run
- name: Tag the next version
run: |
new_tag_name="v${{ env.next-version }}"
git tag "$new_tag_name" "${{ github.sha }}"
# git push origin "$new_tag_name"