disable the demo workflow

This commit is contained in:
John Burwell 2023-05-02 20:18:39 -05:00
parent f045434cfb
commit 643ea7569d

View File

@ -1,18 +1,12 @@
name: Gitea Actions Demo # name: Gitea Actions Demo
run-name: ${{ github.actor }} is testing out Gitea Actions 🚀 # run-name: ${{ github.actor }} is testing out Gitea Actions 🚀
on: [push] # on: [push]
jobs: # jobs:
Explore-Gitea-Actions: # Explore-Gitea-Actions:
runs-on: ubuntu-latest # runs-on: ubuntu-latest
steps: # steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." # - name: Check out repository code
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" # uses: actions/checkout@v3
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." # - name: List files in the repository
- name: Check out repository code # run: |
uses: actions/checkout@v3 # ls ${{ github.workspace }}
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ github.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."