„.gitea/workflows/build.yml“ ändern
Gitea Actions Demo / Build (push) Successful in 38s
Gitea Actions Demo / Deploy (push) Successful in 41s

This commit is contained in:
2023-07-12 20:36:57 +02:00
parent 97dd7d6c3d
commit f2f8e2905e
+5 -6
View File
@@ -1,7 +1,11 @@
# .gitea/workflows/build.yaml # .gitea/workflows/build.yaml
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: [workflow_dispatch, push] on:
workflow_dispatch:
push:
branches: [main]
jobs: jobs:
Build: Build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -33,9 +37,4 @@ jobs:
- name: Deploy - name: Deploy
run: | run: |
echo Deploying... echo Deploying...
sleep 1
echo ...
sleep 1
echo ...
sleep 1
echo DONE! echo DONE!