Files
test/.gitea/workflows/demo.yaml
danthe42 01d78e91d7
Some checks failed
ci / docker (push) Failing after 4s
11
2025-11-06 21:20:09 +01:00

27 lines
733 B
YAML

name: ci
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
docker:
runs-on: ubuntu-22.04
container: docker:latest
steps:
- name: Apt
run: |
- ps ax
- apt-get update
- apt-get install node
- name: PSlist
run: ps ax
- name: Checkout
uses: actions/checkout@v4
- name: Docker login
run: docker login -u danthe -p Secret666 gitea.goroid.io
- name: Build docker container
run: docker build -t gitea.goroid.io/danthe/test:latest .
- name: Push docker container
run: docker push gitea.goroid.io/danthe/test:latest
- name: Cleanup old images
run: docker image prune -f