Update .gitea/workflows/demo.yaml
Docker Build and Release Upload / build (push) Failing after 3s

This commit is contained in:
2025-07-03 22:31:48 +00:00
parent 5fca8258aa
commit 73a60698b2
+14
View File
@@ -19,3 +19,17 @@ jobs:
- name: build server - name: build server
run: | run: |
docker build --build-arg BASE_URL=https://mistox.com -t mistox-website . docker build --build-arg BASE_URL=https://mistox.com -t mistox-website .
- name: create release
run: |
curl -X POST "$git.mistox.net/repos/derek/MistoxCom-Angular/releases" \
-H "Authorization: token ${{ secrets.GITEA_TOKEN }}" \
-H "Content-Type: application/json" \
-d '{
"tag_name": "'"+%Y%m%d%H%M"'",
"target": "main",
"title": "Release "'"+%Y%m%d%H%M"'",
"note": "Auto-generated release from workflow",
"draft": false,
"prerelease": false
}'