Skip to content

Commit

Permalink
docs(samples/basic/workflow.yaml): fixes needs declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
struckchure committed Aug 20, 2024
1 parent 9eb86cc commit dc8bd5d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions samples/basic/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,28 @@ jobs:

steps:
- name: Install essential utils
run: sudo apt update -y && sudo apt install -y build-essential unzip
run: sud apt update -y && sudo apt install -y build-essential unzip

# - name: Install Bun
# run: |
# curl -fsSL https://bun.sh/install | bash
# grep -qxF 'export BUN_INSTALL="$HOME/.bun"' ~/.bashrc || echo 'export BUN_INSTALL="$HOME/.bun"' >> ~/.bashrc
# grep -qxF 'export PATH="$BUN_INSTALL/bin:$PATH"' ~/.bashrc || echo 'export PATH="$BUN_INSTALL/bin:$PATH"' >> ~/.bashrc
- name: Install Bun
run: |
curl -fsSL https://bun.sh/install | bash
grep -qxF 'export PATH="$HOME/.bun/bin:$PATH"' $HOME/.bashrc || echo 'export PATH="$HOME/.bun/bin:$PATH"' >> $HOME/.bashrc
source $HOME/.bashrc
- name: Check Bun version
run: bun --version

- name: test
runs-on: self-hosted
needs: prepare
needs: build

steps:
- name: Testing
run: echo "... testing ..."

- name: deploy
runs-on: self-hosted
needs: prepare
needs: test

steps:
- name: Deploying
Expand Down

0 comments on commit dc8bd5d

Please sign in to comment.