Files
dev/.github/workflows/hello.yml
T
2026-08-12 21:58:00 +02:00

34 lines
585 B
YAML

name: Hello GitHub Actions
on:
workflow_dispatch:
jobs:
hello:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
- run: dotnet --info
- run: dotnet restore
- run: dotnet build --configuration Release
- name: Say hello
run: echo "Hello from GitHub Actions!"
- name: Show operating system
run: uname -a
- name: Show current directory
run: pwd
- name: List files
run: ls -la
- name: Show current time
run: date