We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9dd2ee4 commit f7e421bCopy full SHA for f7e421b
.github/workflows/main.yml
@@ -0,0 +1,22 @@
1
+name: GitHub Actions Demo
2
+on: [push]
3
+
4
+jobs:
5
+ Explore-GitHub-Actions:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - name: Check out repository code
9
+ uses: actions/checkout@v4
10
11
+ - name: Print details
12
+ run: |
13
+ echo "🎉 Triggered by a ${{ github.event_name }} event."
14
+ echo "🐧 Running on ${{ runner.os }} server."
15
+ echo "🔎 Branch name: ${{ github.ref }}."
16
+ echo "Repository: ${{ github.repository }}."
17
18
+ - name: List files
19
+ run: ls ${{ github.workspace }}
20
21
+ - name: Deploy to GitHub Pages
22
+ run: echo "🚀 Deployment task here."
0 commit comments