try to fix installing dependencies #27
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: Python application CI/CD | |
permissions: | |
contents: write | |
issues: write | |
pull-requests: write | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# os: [windows-latest] | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10.11" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Build with PyInstaller | |
run: python build.py | |
- name: Zip everything inside dist for windows | |
if: ${{ runner.os == 'Windows' }} | |
run: | | |
mkdir releases | |
cd dist | |
Compress-Archive -Path * -DestinationPath ../releases/${{ runner.os }}-build.zip | |
- name: Zip everything inside dist for macos and linux | |
if: ${{ runner.os != 'Windows' }} | |
run: | | |
mkdir releases | |
cd dist | |
zip -r ../releases/${{ runner.os }}-build.zip * | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ runner.os }}-build | |
path: releases/${{ runner.os }}-build.zip | |
publish-release: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Automatic Semantic Versioning | |
id: semver | |
uses: paulhatch/semantic-version@v5.3.0 | |
with: | |
branch: main | |
tag_prefix: "" | |
bump_each_commit: true | |
- name: Set new tag | |
run: git tag ${{ steps.semver.outputs.version }} | |
- name: Push tag | |
uses: ad-m/github-push-action@master | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref }} | |
tags: true | |
- name: Download All Artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
path: releases/ | |
- name: Display structure of downloaded files | |
run: ls -R ./ | |
- name: Create Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: ${{ steps.semver.outputs.version }} | |
draft: false | |
prerelease: false | |
files: | | |
./releases/*/* | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Cleanup Artifacts | |
uses: geekyeggo/delete-artifact@v2 | |
with: | |
name: | | |
Windows-build | |
macOS-build | |
Linux-build |