release v0.26.1 #37
Workflow file for this run
This file contains hidden or 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: Release | |
## This workflow is limited only when a new tag is created | |
on: | |
push: | |
tags: ["*"] | |
## Set permissions to the github token | |
## https://github.com/softprops/action-gh-release#permissions | |
permissions: | |
contents: write | |
jobs: | |
release: | |
if: ${{ github.repository == 'jmjuanes/folio' }} | |
runs-on: ubuntu-latest | |
name: Release | |
steps: | |
- uses: softprops/action-gh-release@v2 | |