Update .gitea/workflows/gitea.yaml
Some checks failed
Tomcode landing build/deploy / build (push) Successful in 35s
Tomcode landing build/deploy / dockerize (push) Failing after 12s

This commit is contained in:
thomas 2024-09-22 13:44:54 +02:00
parent 892562724e
commit 625f2bae8d

View File

@ -20,18 +20,19 @@ jobs:
echo "Building application." echo "Building application."
npm run build --cache .npm --prefer-offline npm run build --cache .npm --prefer-offline
- name: Upload application artifact - name: Upload application artifact
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v2
with: with:
name: application name: application
path: /app path: /app
dockerize: dockerize:
name: dockerize name: dockerize
needs: build
runs-on: host runs-on: host
container: container:
image: catthehacker/ubuntu:act-latest image: catthehacker/ubuntu:act-latest
steps: steps:
- name: Download application artifact - name: Download application artifact
uses: actions/download-artifact@v4 uses: actions/download-artifact@v2
with: with:
name: application name: application
path: /app path: /app