Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
ekeyme committed Nov 20, 2024
1 parent a14208c commit 3f53202
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/appimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,26 @@ jobs:
Generate:
runs-on: ubuntu-latest
env:
LINUX_TAG: manylinux2014
PYTHON_VERSION: 3.10
LINUX_TAG: manylinux2010
PYTHON_VERSION: "3.10"

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v2
with:
repository: niess/python-appimage
path: python-appimage
- name: Checkout base repo
uses: actions/checkout@v4

- name: Install dependencies
run: |
pip install python-appimage
- name: Build
run: |
ln -s python-appimage/python_appimage
python -m python_appimage build app -l ${LINUX_TAG}_x86_64 \
-p ${PYTHON_VERSION} appimage
python-appimage build app -p ${PYTHON_VERSION} appimage
ls ./
- name: Release
uses: marvinpinto/action-automatic-releases@latest
with:
automatic_release_tag: continuous
title: Continuous build
files: python-x86_64.AppImage
repo_token: ${{ secrets.GITHUB_TOKEN }}
repo_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 3f53202

Please sign in to comment.