mirror of
https://codeberg.org/aryak/mozhi
synced 2024-11-10 08:22:02 +05:30
Add CI (testing)
This commit is contained in:
parent
db78d6fa8c
commit
697f49950f
24
.gitea/workflows/push.yml
Normal file
24
.gitea/workflows/push.yml
Normal file
@ -0,0 +1,24 @@
|
||||
name: mozhi-on-push-pipeline
|
||||
on: push
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v1
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
|
||||
- name: Login to DockerHub
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
username: aryak
|
||||
password: ${{ secrets.MOZHI_DOCKER_PASSWORD }}
|
||||
|
||||
- name: Build and push
|
||||
id: docker_build
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
push: true
|
||||
tags: latest
|
Loading…
Reference in New Issue
Block a user