Remove create-release job from workflow

This commit is contained in:
Karmaa
2025-09-10 21:30:14 -05:00
committed by GitHub
parent ff76137339
commit 7756dc6a4c

View File

@@ -100,40 +100,3 @@ jobs:
name: Termix-Linux-Portable name: Termix-Linux-Portable
path: release/Termix-Linux-Portable.zip path: release/Termix-Linux-Portable.zip
retention-days: 30 retention-days: 30
create-release:
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/development')
needs: [build-windows, build-linux]
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: ./artifacts
- name: Create Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.ref_name }}-${{ github.run_number }}
name: Termix ${{ github.ref_name }} Build ${{ github.run_number }}
body: |
## Termix ${{ github.ref_name }} Build ${{ github.run_number }}
### Downloads
- **Windows Portable**: Download the zip file and extract to run Termix without installation
- **Windows Installer**: Run the .exe file to install Termix on your system
- **Linux Portable**: Download the zip file and extract to run Termix on Linux systems
### Changes
See the [commit history](https://github.com/${{ github.repository }}/compare/${{ github.event.before }}...${{ github.sha }}) for details.
files: |
artifacts/Termix-Windows-Portable/Termix-Windows-Portable.zip
artifacts/Termix-Windows-Installer/*
artifacts/Termix-Linux-Portable/Termix-Linux-Portable.zip
draft: false
prerelease: ${{ github.ref == 'refs/heads/development' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}