Release #19
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 | |
on: workflow_dispatch | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y debhelper-compat dh-sequence-python3 python3-all python3-setuptools help2man devscripts gettext lsb-release xmlstarlet git | |
- uses: actions/checkout@v3 | |
with: | |
ref: master | |
- name: Prepare release files | |
id: tag | |
run: | | |
./scripts/create-release.sh | |
env: | |
DEBFULLNAME: ${{ secrets.DEBFULLNAME }} | |
DEBEMAIL: ${{ secrets.DEBEMAIL }} | |
- name: Build deb package | |
run: | | |
dpkg-buildpackage -us -uc | |
- name: Commit changes | |
run: | | |
git config --global user.name 'Wouter Wijsman' | |
git config --global user.email '[email protected]' | |
git add pyproject.toml data/io.github.sharkwouter.Minigalaxy.metainfo.xml debian/changelog minigalaxy/version.py | |
git commit -m "Add new release" | |
git push | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: ${{ steps.tag.outputs.VERSION }} | |
name: Minigalaxy version ${{ steps.tag.outputs.VERSION }} | |
body_path: release.md | |
files: | | |
../minigalaxy_*.deb | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |