From dba8470a29c6ad55e20ea4097eb16eacd81310e0 Mon Sep 17 00:00:00 2001 From: bniladridas Date: Fri, 26 Sep 2025 09:19:53 +0530 Subject: [PATCH] Fix YAML indentation and file path again --- .github/workflows/release.yml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b08859c..0cf4948 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,20 +10,20 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: '3.9' - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install build - - name: Build package - run: python -m build - - name: Create Release - uses: softprops/action-gh-release@v1 - with: - files: ./dist/git-tui-${{ github.ref_name }}.tar.gz - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.9' + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install build + - name: Build package + run: python -m build + - name: Create Release + uses: softprops/action-gh-release@v1 + with: + files: ./dist/git-tui-${{ github.ref_name | replace('v', '') }}.tar.gz + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file