try fix ci 01 #2184
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 | |
- name: twine | |
run: | | |
python -m venv env | |
. .venv/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/* | |
env: | |
TWINE_USERNAME: "__token__" | |
TWINE_PASSWORD: ${{ secrets.PIP_TOKEN }} | |
- uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.TOKEN }}" | |
automatic_release_tag: "v24.09.0" | |
prerelease: true | |
title: "Fix Release" | |
files: | | |
LICENSE | |
appimage-bld/osc-tui-x86_64.AppImage |