1
0
Fork 0
mirror of synced 2024-05-19 03:52:47 +12:00
Rare/.github/workflows/release.yml

233 lines
7.7 KiB
YAML
Raw Normal View History

name: "Release"
2021-03-17 04:45:28 +13:00
on:
release:
types: [ published ]
2021-03-17 04:45:28 +13:00
jobs:
2021-08-12 08:04:17 +12:00
pypi-deploy:
2021-05-22 02:58:18 +12:00
if: "!github.event.release.prerelease"
2021-03-17 04:45:28 +13:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2021-09-15 05:42:13 +12:00
with:
2022-09-28 10:08:09 +13:00
ref: "release"
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
2021-03-17 22:18:42 +13:00
2021-03-26 23:33:50 +13:00
deb-package:
runs-on: ubuntu-latest
2021-03-26 23:33:50 +13:00
steps:
- name: Install Makedeb
2021-04-14 02:56:44 +12:00
run: |
wget -qO - 'https://proget.hunterwittenborn.com/debian-feeds/makedeb.pub' | gpg --dearmor | sudo tee /usr/share/keyrings/makedeb-archive-keyring.gpg &> /dev/null
echo 'deb [signed-by=/usr/share/keyrings/makedeb-archive-keyring.gpg arch=all] https://proget.hunterwittenborn.com/ makedeb main' | sudo tee /etc/apt/sources.list.d/makedeb.list
sudo apt update
sudo apt install makedeb
- name: Prepare source directory
2021-03-28 06:02:39 +13:00
run: |
git clone https://mpr.hunterwittenborn.com/rare.git build
sed -i "s/pkgver=.*/pkgver=${{ github.event.release.tag_name }}/g" build/PKGBUILD
- name: build deb
run: |
cd build
makedeb -d
mv *.deb Rare.deb
- name: Upload to Releases
2021-03-26 23:33:50 +13:00
uses: svenstaro/upload-release-action@2.2.1
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
2021-12-21 09:06:48 +13:00
file: build/Rare.deb
asset_name: Rare-${{ github.event.release.tag_name }}.deb
2021-03-28 06:59:46 +13:00
tag: ${{ github.ref }}
2021-03-26 23:33:50 +13:00
overwrite: true
2021-08-12 08:04:17 +12:00
appimage:
2022-08-30 05:10:54 +12:00
runs-on: ubuntu-22.04
2021-08-12 08:04:17 +12:00
steps:
- uses: actions/checkout@v3
2022-09-28 10:34:28 +13:00
with:
ref: "release"
- name: Install build dependencies
2021-08-12 08:04:17 +12:00
run: |
sudo apt update
sudo apt install python3 python3-pip python3-setuptools patchelf desktop-file-utils libgdk-pixbuf2.0-dev fakeroot strace fuse
- name: Install appimage-builder
2021-08-12 08:04:17 +12:00
run: |
sudo wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage -O /usr/local/bin/appimagetool
sudo chmod +x /usr/local/bin/appimagetool
sudo pip3 install appimage-builder
- name: Build
run: |
2021-12-11 12:19:36 +13:00
cp rare/__main__.py .
2021-08-12 08:04:17 +12:00
appimage-builder --skip-test
2021-09-02 08:26:05 +12:00
mv Rare-*.AppImage Rare.AppImage
2021-11-17 10:54:23 +13:00
mv Rare-*.AppImage.zsync Rare.AppImage.zsync
2021-10-08 08:23:19 +13:00
- name: Upload to Releases
2021-08-12 08:04:17 +12:00
uses: svenstaro/upload-release-action@2.2.1
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: Rare.AppImage
asset_name: Rare-${{ github.event.release.tag_name }}.AppImage
2021-11-17 10:54:23 +13:00
tag: ${{ github.ref }}
overwrite: true
2021-12-09 05:53:26 +13:00
- name: Upload zsync file to GitHub
2021-11-17 10:54:23 +13:00
uses: svenstaro/upload-release-action@2.2.1
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
2021-11-18 10:42:14 +13:00
file: Rare.AppImage.zsync
asset_name: Rare-${{ github.event.release.tag_name }}.AppImage.zsync
2021-08-12 08:04:17 +12:00
tag: ${{ github.ref }}
overwrite: true
nuitka:
runs-on: "windows-latest"
steps:
- uses: actions/checkout@v3
2022-09-28 10:34:28 +13:00
with:
ref: "release"
- uses: actions/setup-python@v4
with:
python-version: '3.9'
architecture: x64
- name: Install build dependencies
run: pip3 install nuitka ordered-set
- name: Install target dependencies
run: |
pip3 install -r requirements.txt
pip3 install -r requirements-presence.txt
- name: Build
run: >-
python -m nuitka
--assume-yes-for-downloads
--msvc=latest
--lto=yes
--jobs=2
--static-libpython=no
--standalone
--enable-plugin=anti-bloat
--enable-plugin=pyqt5
--show-modules
--show-anti-bloat-changes
--follow-stdlib
--follow-imports
--nofollow-import-to="*.tests"
--nofollow-import-to="*.distutils"
--prefer-source-code
--include-package=pypresence
--include-package-data=qtawesome
--include-data-dir=rare\resources\images=rare\resources\images
--include-data-files=rare\resources\languages=rare\resources\languages="*.qm"
--windows-icon-from-ico=rare\resources\images\Rare.ico
--windows-company-name=Rare
--windows-product-name=Rare
--windows-file-description=rare.exe
--windows-file-version=${{ github.event.release.tag_name }}
--windows-product-version=${{ github.event.release.tag_name }}
--disable-console
rare
- name: Fix QtNetwork SSL
run: |
Copy-Item -Path "rare.dist\libcrypto-1_1.dll" -Destination "rare.dist\libcrypto-1_1-x64.dll"
Copy-Item -Path "rare.dist\libssl-1_1.dll" -Destination "rare.dist\libssl-1_1-x64.dll"
- name: Compress
run: |
python -c "import shutil; shutil.make_archive('Rare-Windows', 'zip', 'rare.dist')"
- name: Upload to Releases
uses: svenstaro/upload-release-action@2.2.1
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: Rare-Windows.zip
asset_name: Rare-Windows-${{ github.event.release.tag_name }}.zip
tag: ${{ github.ref }}
overwrite: true
cx_freeze:
runs-on: "windows-latest"
steps:
- uses: actions/checkout@v3
2022-09-28 10:34:28 +13:00
with:
ref: "release"
- uses: actions/setup-python@v4
with:
python-version: '3.9'
architecture: x64
- name: Install Build Dependencies
2021-09-02 08:26:05 +12:00
run: pip3 install --upgrade cx_freeze wheel
- name: Install Target Dependencies
run: |
pip3 install -r requirements.txt
pip3 install -r requirements-presence.txt
- name: Build
run: |
python freeze.py bdist_msi
mv dist/*.msi dist/Rare-Windows.msi
2021-10-08 08:23:19 +13:00
- name: Upload to Releases
uses: svenstaro/upload-release-action@2.2.1
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: dist/Rare-Windows.msi
asset_name: Rare-Windows-${{ github.event.release.tag_name }}.msi
tag: ${{ github.ref }}
2021-09-03 04:29:11 +12:00
overwrite: true
mac_os:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
2022-09-28 10:34:28 +13:00
with:
ref: "release"
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install Build Dependencies
run: pip install pyinstaller
- name: Install Target Dependencies
run: |
pip install -r requirements.txt
- name: Move files
run: mv rare/__main__.py __main__.py
- name: Build
run: >-
pyinstaller -F --name Rare
--add-data "rare/resources/languages/*:rare/resources/languages"
--add-data "rare/resources/images/*:rare/resources/images/"
--windowed
--icon rare/resources/images/Rare.icns
--hidden-import=legendary
__main__.py
- name: Create dmg
run: |
git clone https://github.com/create-dmg/create-dmg
create-dmg/create-dmg Rare.dmg dist/Rare.App --volname Rare --volicon rare/resources/images/Rare.icns
- name: upload to GitHub
uses: svenstaro/upload-release-action@2.2.1
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: Rare.dmg
asset_name: Rare-${{ github.event.release.tag_name }}.dmg
tag: ${{ github.ref }}
overwrite: true