Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/demo
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: CI Workflow

# Trigger the workflow on push events to the main branch
on:
push:
branches:
- main

jobs:
build:
# Specify the type of runner (Ubuntu in this case)
runs-on: ubuntu-latest

22 changes: 22 additions & 0 deletions .github/workflows/demo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

name: CI Workflow Trigger

on:
push:
branches:
- notrealbranch
tags:
- 'v*' # v1, v1.2, v1.2.3

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Verify runner
run: |
echo "Runner OS: $RUNNER_OS"
uname -a
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,4 @@ For this workshop you need the following:
- It is recommended to have a second screen for the hand-on labs

## Cheat Sheet
Find common terminology for reference [here](./CheatSheet.md)

Find common terminology for reference [here](./CheatSheet.md)