initial commit
This commit is contained in:
22
.gitea/workflows/docker_build_push.yaml
Normal file
22
.gitea/workflows/docker_build_push.yaml
Normal file
@@ -0,0 +1,22 @@
|
||||
name: ci
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
- name: Login to GitHub Container Registry
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: gitea.enve.dev
|
||||
username: enve
|
||||
password: ${{ secrets.PASSWORD }}
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
push: true
|
||||
tags: gitea.enve.dev/enve.dev/actions_test:latest
|
||||
Reference in New Issue
Block a user