Skip to content

Commit

Permalink
Update simple.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Anoint <[email protected]>
  • Loading branch information
whoami-anoint committed Jan 29, 2024
1 parent 221f91b commit 0f79596
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions .github/workflows/simple.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# This is a basic workflow to help you get started with Actions

name: CI
name: Probe

# Controls when the workflow will run
on:
Expand All @@ -19,18 +17,22 @@ jobs:
build:
# The type of runner that the job will run on
runs-on:
- self-hosted
self-hosted

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: Checkout code
uses: actions/checkout@v3

# Runs a single command using the runners shell
- name: Run a one-line script
run: echo Hello, world!
# Install Probe dependencies
- name: Install Probe dependencies
run: |
# Download probe installer make.py
wget https://raw.githubusercontent.com/whoami-anoint/Probe/main/make.py
# Run the installer
python3 make.py
# Runs a set of commands using the runners shell
- name: Run a multi-line script
echo Add other actions to build,
echo test, and deploy your project.
# Finally, run probe.sh
- name: Run Probe
run: ./probe.sh

0 comments on commit 0f79596

Please sign in to comment.