diff --git a/.github/workflows/demo b/.github/workflows/demo new file mode 100644 index 0000000..6d88e87 --- /dev/null +++ b/.github/workflows/demo @@ -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 + diff --git a/.github/workflows/demo.yml b/.github/workflows/demo.yml new file mode 100644 index 0000000..5cc6991 --- /dev/null +++ b/.github/workflows/demo.yml @@ -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 diff --git a/README.md b/README.md index f49c2f6..5dea415 100644 --- a/README.md +++ b/README.md @@ -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) \ No newline at end of file