Files
ember-market-frontend/.gitea/workflows/build.yml
g 660547e901
Some checks failed
Build Frontend / build (push) Failing after 2m1s
Update workflow to HTTPS, test commit
2026-01-11 12:22:11 +00:00

23 lines
653 B
YAML

name: Build Frontend
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build Docker image
run: docker build -t ember-market-frontend .
- name: Login to Gitea Registry
run: echo "${{ secrets.REGISTRY_TOKEN }}" | docker login https://runner.thaiboydigit.al -u g --password-stdin
- name: Tag Docker image
run: docker tag ember-market-frontend https://runner.thaiboydigit.al/g/ember-market-frontend:latest
- name: Push Docker image
run: docker push https://runner.thaiboydigit.al/g/ember-market-frontend:latest