release 24.12.00 #2187
Workflow file for this run
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: Appimage Create Release Binaries | |
on: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install fuse | |
run: | | |
sudo apt-get update --fix-missing | |
sudo apt-get install -y -f -o Acquire::Retries=3 fuse python-is-python3 | |
- name: configure | |
run: ./configure.sh --release | |
- name: make | |
run: make appimage-bld/osc-tui-x86_64.AppImage | |
- uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.TOKEN }}" | |
automatic_release_tag: "v24.12.0" | |
prerelease: true | |
title: "Fix Release" | |
files: | | |
LICENSE | |
appimage-bld/osc-tui-x86_64.AppImage | |
- name: twine | |
run: | | |
python -m venv env | |
. env/bin/activate | |
python -m pip install -e . | |
python -m pip install --upgrade build | |
python -m pip install --upgrade twine | |
python -m build | |
twine upload --verbose dist/osc_tui*whl | |
twine upload --verbose dist/osc_tui*tar.gz | |
env: | |
TWINE_USERNAME: "__token__" | |
TWINE_PASSWORD: ${{ secrets.PIP_TOKEN }} |