1159cl/.gitea/workflows/docker.yml
Mario1159 0bf76cca53
Some checks failed
Build docker image / test (push) Successful in 30s
Build docker image / build-image (push) Failing after 30s
Update workflows
2023-05-17 21:14:34 -04:00

32 lines
645 B
YAML

name: Build docker image
on:
push:
branches: [ main ]
jobs:
test:
uses: ./.gitea/workflows/deno.yml
build-image:
runs-on: ubuntu-latest
timeout-minutes: 5
needs: test
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: docker build -t git.1159.cl/mario1159/1159cl:latest .
- name: Authentication
uses: docker/login-action@v2
with:
registry: git.1159.cl
username: ${{ github.repository_owner }}
password: ${{ secrets.GITEA_TOKEN }}
- name: Push
run: push git.1159.cl/mario1159/1159cl:latest