chore: add semantic version to pipeline
Some checks failed
Publish image / bump-crate (push) Failing after 1m33s
Publish image / create-docker-images (push) Has been skipped

This commit is contained in:
Alexander Navarro 2025-03-24 16:23:40 -03:00
parent e0b259cc6f
commit 5bd421f12b
3 changed files with 43 additions and 19 deletions

View file

@ -6,8 +6,25 @@ on:
workflow_dispatch:
jobs:
bump-crate:
runs-on: rust
steps:
- run: cargo install cargo-bump
- name: Bump version and publish
uses: https://github.com/cocogitto/cocogitto-action@v3.10
env:
NPM_REGISTRY_TOKEN: ${{ secrets.NPM_TOKEN_FORGEJO }}
with:
release: true
check-latest-tag-only: true
git-user: 'Cog Bot'
git-user-email: 'cog@alecodes.page'
create-docker-images:
runs-on: host
needs:
- bump-crate
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3