fix(check): properly fallback if no latest tag #50
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: cocogitto-action | |
- name: Initialise repository | |
run: | | |
git init | |
echo "# Mona Lisa" > README.md | |
git config --global user.name "Mona Lisa" | |
git config --global user.email "[email protected]" | |
git add README.md | |
git commit -m "docs: add Mona Lisa docs" | |
- name: Run cocogitto-action | |
uses: ./cocogitto-action |