Fix workflow indentation #9
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 | |
| permissions: | |
| contents: write | |
| on: | |
| push: | |
| tags: | |
| - '*' | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: lukka/get-cmake@latest | |
| with: | |
| cmakeVersion: "~3.25.0" # <--= optional, use most recent 3.25.x version | |
| ninjaVersion: "^1.11.1" # <--= optional, use most recent 1.x version | |
| - name: create zip | |
| run: | | |
| mkdir build | |
| mkdir tmp | |
| cd tmp | |
| cmake -DMADDY_CREATE_PACKAGE=ON .. | |
| make maddy_package | |
| - name: Get current tag message | |
| id: tag-message | |
| run: | | |
| TAG_NAME=${GITHUB_REF#refs/tags/} | |
| TAG_MESSAGE=$(git for-each-ref refs/tags/$TAG_NAME --format='%(contents)') | |
| echo "message<<EOF" >> $GITHUB_OUTPUT | |
| echo "$TAG_MESSAGE" >> $GITHUB_OUTPUT | |
| echo "EOF" >> $GITHUB_OUTPUT | |
| - name: create release | |
| uses: svenstaro/upload-release-action@v2 | |
| with: | |
| repo_token: ${{ secrets.GITHUB_TOKEN }} | |
| file: build/maddy-src.zip | |
| tag: ${{ github.ref }} | |
| body: | | |
| ${{ steps.tag-message.outputs.message }} | |
| --- | |
| You can find all changes of this release in the [changelog](https://github.com/progsource/maddy/blob/master/CHANGELOG.md) |