Skip to content

V4.0.1 Release: Boot Animation Creator fixes and improvements #3

V4.0.1 Release: Boot Animation Creator fixes and improvements

V4.0.1 Release: Boot Animation Creator fixes and improvements #3

Workflow file for this run

name: Build QuickADB
on:
workflow_dispatch:
push:
tags:
- 'v*'
- 'V*'
permissions:
contents: write
jobs:
build:
strategy:
fail-fast: false
matrix:
include:
- os: windows-latest
artifact_name: QuickADB-Windows
artifact_path: dist/QuickADB.exe
- os: ubuntu-22.04
artifact_name: QuickADB-Linux
artifact_path: QuickADB-x86_64.AppImage
- os: macos-latest
artifact_name: QuickADB-macOS
artifact_path: dist/QuickADB
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Build executable
run: python build.py
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.artifact_name }}
path: ${{ matrix.artifact_path }}
if-no-files-found: error
release:
needs: build
if: startsWith(github.ref, 'refs/tags/v') || startsWith(github.ref, 'refs/tags/V')
runs-on: ubuntu-latest
steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: artifacts
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
files: artifacts/**/*
generate_release_notes: true