Skip to content

Commit 7febd22

Browse files
author
opencode
committed
Fix YAML indentation in workflow file
1 parent 15ca1c6 commit 7febd22

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

.github/workflows/build.yml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,14 @@ jobs:
5353
name: Voice2Text-macOS
5454
path: dist/Voice2Text
5555

56-
build-linux:
57-
runs-on: ubuntu-latest
58-
steps:
59-
- uses: actions/checkout@v4
60-
- name: Set up Python
61-
uses: actions/setup-python@v4
62-
with:
63-
python-version: '3.8'
56+
build-linux:
57+
runs-on: ubuntu-latest
58+
steps:
59+
- uses: actions/checkout@v4
60+
- name: Set up Python
61+
uses: actions/setup-python@v4
62+
with:
63+
python-version: '3.8'
6464
- name: Install PortAudio
6565
run: sudo apt-get update && sudo apt-get install -y portaudio19-dev xvfb
6666
- name: Install dependencies
@@ -70,27 +70,27 @@ jobs:
7070
pip install pyinstaller
7171
- name: Build executable
7272
run: xvfb-run pyinstaller voice_app.spec
73-
- name: Upload artifact
74-
uses: actions/upload-artifact@v4
75-
with:
76-
name: Voice2Text-Linux
77-
path: dist/Voice2Text
73+
- name: Upload artifact
74+
uses: actions/upload-artifact@v4
75+
with:
76+
name: Voice2Text-Linux
77+
path: dist/Voice2Text
7878

7979
release:
8080
needs: [build-windows, build-macos, build-linux]
8181
runs-on: ubuntu-latest
8282
permissions:
8383
contents: write
8484
steps:
85-
- name: Download artifacts
86-
uses: actions/download-artifact@v4
87-
- name: Create Release
88-
uses: softprops/action-gh-release@v2
89-
env:
90-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
85+
- name: Download artifacts
86+
uses: actions/download-artifact@v4
87+
- name: Create Release
88+
uses: softprops/action-gh-release@v2
89+
env:
90+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9191
with:
9292
files: |
9393
Voice2Text-Windows/Voice2Text.exe
9494
Voice2Text-macOS/Voice2Text
95-
draft: false
96-
prerelease: false
95+
draft: false
96+
prerelease: false

0 commit comments

Comments
 (0)