docs(changelog): update #3
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: "Luarocks release" | |
on: | |
push: | |
tags: | |
- '*.*.*' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
name: Release | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Fail if changelog entry does not exist | |
run: grep -q "${{ github.ref_name }}" CHANGELOG.md | |
- name: Release to marketplace | |
uses: ncipollo/release-action@v1 | |
with: | |
bodyFile: "CHANGELOG.md" | |
allowUpdates: true |