d3vyce.fr/.gitea/workflows/docker-build.yml
Workflow config file is invalid. Please check your config file: yaml: line 10: mapping values are not allowed in this context
2023-04-02 09:08:53 -04:00

18 lines
499 B
YAML

name: Docker-build
on: [push]
jobs:
docker-build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
registry: git.d3vyce.fr
username: ${{ secrets.GIT_USERNAME }}
password: ${{ secrets.GIT_TOKEN }}
- name: Build/Push
run: |
docker build -t d3vyce.fr .
docker push git.d3vyce.fr/d3vyce/d3vyce.fr:latest