Create Release #9
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: Release | |
run-name: Create Release | |
on: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
release: | |
name: Create release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: sudo apt-get update -q && sudo apt-get install gettext | |
- run: bash scripts/build.sh | |
- uses: svenstaro/[email protected] | |
with: | |
file: [email protected] | |
overwrite: true | |
release_name: Tiling Assistant ${{ github.ref_name }} | |
body: "Read about all the changes [here](https://github.com/Leleat/Tiling-Assistant/blob/main/CHANGELOG.md#${{ github.ref_name }})." |