Compare commits

..

No commits in common. "7570da57108f4297e787a7302cb624f12c59ae32" and "e9ca24c1edcc394e62debdc95c204f964e89bfcf" have entirely different histories.

View File

@ -6,7 +6,14 @@ jobs:
Explore-Gitea-Actions: Explore-Gitea-Actions:
runs-on: docker runs-on: docker
steps: steps:
- name: Check out repository - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
uses: actions/checkout@v5 - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
- run: echo "Starting building the docker image" - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- run: docker build -t andreas/rsyncd:latest . - name: Check out repository code
uses: actions/checkout@v4
- run: echo "💡 The ${{ gitea.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 ${{ gitea.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."