mirror of
https://codeberg.org/aryak/mozhi
synced 2024-11-08 23:32:24 +05:30
Arya Kiran
d38b8dd8aa
Some checks failed
mozhi pipeline / Push Docker image to Codeberg docker registry (push) Failing after 19s
25 lines
625 B
YAML
25 lines
625 B
YAML
name: mozhi pipeline
|
|
on: push
|
|
jobs:
|
|
push_to_registry:
|
|
runs-on: ubuntu-latest
|
|
name: Push Docker image to Codeberg docker registry
|
|
steps:
|
|
- name: Check out the repo
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Log in to Docker Hub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: aryak
|
|
password: ${{ secrets.MOZHI_DOCKER_PASSWORD }}
|
|
registry: codeberg.org
|
|
|
|
- name: Build and push Docker image
|
|
uses: docker/build-push-action@v1
|
|
with:
|
|
context: .
|
|
file: ./Dockerfile
|
|
push: true
|
|
tags: latest
|