Skip to content

feat: Adding the frenchpark-website repo #15

feat: Adding the frenchpark-website repo

feat: Adding the frenchpark-website repo #15

Workflow file for this run

---
name: Tag release
on:
push:
branches:
- '!**'
- 'main'
jobs:
tag-release:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: write
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check for conventional commits
uses: cocogitto/[email protected]
- name: Get next version
id: next_version
run: |
echo NEXT_VERSION=`cog bump --auto --dry-run` >> "$GITHUB_ENV"
- name: Cocogitto tag
id: tag
uses: cocogitto/cocogitto-action@v3
with:
check-latest-tag-only: false
release: true
git-user: 'GitHubActions'
git-user-email: '[email protected]'