Skip to content

chore: ci

chore: ci #7

Workflow file for this run

name: CI
on:
workflow_dispatch: {}
push: {}
jobs:
has-releasw:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
path: cocogitto-action
- name: Initialise repository
run: |
git init
echo './cocogitto-action/' > .gitignore
echo '# Mona Lisa' > README.md
git config --global user.name 'Mona Lisa'
git config --global user.email '[email protected]'
git add README.md .gitignore
git commit -m 'feat: add Mona Lisa docs'
- name: Run cocogitto-action
id: release
uses: ./cocogitto-action
with:
check: true
release: true
- name: Check version
run: |
echo ${{ steps.release.outputs.version }}