Skip to content

Create hello-world-docker-ci.yml #2

Create hello-world-docker-ci.yml

Create hello-world-docker-ci.yml #2

name: Github Actions Demo
on:
push:
branches: main
pull_request:
branches: main
workflow_dispatch:
schedule:
- cron: '15 6 * * 0'
jobs:
Build:
name: Build
runs-on: ubuntu-latest
steps:
- run: |
echo "🎉 The job was triggered by event: ${{ github.event_name }}"
echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ."
- uses: actions/checkout@v4
- name: List files in the repository
run: |
echo "The repository ${{ github.repository }} contains the following files:"
tree