Skip to content

Commit

Permalink
fix: yml syntax
Browse files Browse the repository at this point in the history
Signed-off-by: Azanul <azanulhaque@gmail.com>
  • Loading branch information
Azanul committed Aug 13, 2023
1 parent 77fc9cd commit 3cb62b7
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/generate_demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions:
contents: write

jobs:
Setup:
setup:
runs-on: ubuntu-latest
steps:
- name: Check out repo
Expand All @@ -29,25 +29,27 @@ jobs:
- name: Install VHS
run: go install github.com/charmbracelet/vhs@latest

Record receiver:
record-receiver:
runs-on: ubuntu-latest
needs: [Setup]
needs: [setup]
steps:
- name: Record receiver
run: vhs receiver_demo.tape

Record sender:
record-sender:
runs-on: ubuntu-latest
needs: [Setup]
needs: [setup]
steps:
- name: Download a 200MB test file
run: curl -LJO http://ipv4.download.thinkbroadband.com/200MB.zip

- name: Record sender
run: vhs sender_demo.tape

- name: Commit and push
run: |-
Commit:
needs: [record-receiver, record-sender]
steps:
- run: |-
cd main
git config --global user.email "actions@users.noreply.github.com"
git config --global user.name "DEMO-bot"
Expand Down

0 comments on commit 3cb62b7

Please sign in to comment.