Files
python-locust-example/.gitea/workflows/gitea-ci.yaml
Chris Richardson e2abcd15fa
Some checks failed
Build And Test / publish (push) Failing after 1m52s
asD
2025-05-12 18:30:46 -04:00

40 lines
1.1 KiB
YAML

name: Build And Test
on: [ push ]
jobs:
# build:
# runs-on: ubuntu-latest
# steps:
# - uses: https://github.com/actions/checkout@v4
# - name: Use Node.js
# uses: https://github.com/actions/setup-node@v3
# with:
# node-version: '18.17'
# - run: npm ci
# - run: npm run lint
# - run: npm run test
# - run: npm run build:prod
# env:
# NODE_OPTIONS: --max_old_space_size=4096
publish:
runs-on: ubuntu-latest
if: gitea.ref == 'refs/heads/develop'
steps:
- uses: actions/checkout@v4
# - name: Set up Docker Buildx
# uses: https://github.com/docker/setup-buildx-action@v3
# with:
# config-inline: |
# [registry."<my-private-unsecure-git-repository-ip-address>:5000"]
# http = true
# insecure = true
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
push: true
tags: "private-registry:5000/python-locust-example:${{gitea.sha}},private-registry:5000/python-locust-example:latest"