build: push docker images automatically
This commit is contained in:
parent
07ec53acd7
commit
a65265af49
31
.github/workflows/docker.yaml
vendored
Normal file
31
.github/workflows/docker.yaml
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
name: Build and Push Docker Image
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
|
||||
- name: Log in to Docker registry
|
||||
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login git.jabuxas.xyz -u ${{ secrets.DOCKER_USERNAME }} --password-stdin
|
||||
|
||||
- name: Build and push Docker image
|
||||
run: |
|
||||
docker build -t git.jabuxas.xyz/jabuxas/abyss:latest .
|
||||
docker push git.jabuxas.xyz/jabuxas/abyss:latest
|
||||
|
||||
- name: Log out of Docker registry
|
||||
run: docker logout git.jabuxas.xyz
|
Loading…
Reference in New Issue
Block a user