This repository has been archived on 2024-04-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
gitea/.gitea/workflows/rebuild.yml
T
lukas 6199c82342
Rebuild Gitea container / Build container image (push) Successful in 52s
add test gitea action
2023-09-10 15:21:13 +02:00

17 lines
511 B
YAML

name: Rebuild Gitea container
run-name: ${{ gitea.actor }} is testing actions
on: [push]
jobs:
Build container image:
runs-on: ubuntu-latest
steps:
- run: echo "Trigged by ${{ gitea.event_name }}"
- run: echo "Name of branch is ${{ gitea.ref }} and repository ${{ gitea.repository }}"
- name: Check out repository code
uses: actions/checkout@v3
- name: List all files
run: |
ls ${{ gitea.workspace }}
- run: echo "Status is ${{ job.status }}"