Files
mobility-accounts/.github/workflows/build.yml
Arnaud Delcasse 901faeadc3
Some checks failed
Build and Push Docker Image / checkout_repository (push) Failing after 5s
Try repository token
2024-03-24 20:00:26 +01:00

32 lines
728 B
YAML

name: Build and Push Docker Image
on:
push:
branches:
- main
- dev
jobs:
checkout_repository:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
# KANIKO
- name: Kaniko build and push
uses: aevea/action-kaniko@master
with:
build_file: Dockerfile
registry: git.coopgo.io
username: ${{gitea.actor}}
password: ${{secrets.registry_token}}
image: ${{gitea.repository}}
tag: ${{gitea.ref_name}}
cache: true
cache_registry: git.coopgo.io/${{gitea.repository}}/cache
extra-args: |
ACCESS_TOKEN_USR=${{gitea.actor}}
ACCESS_TOKEN_PWD=${{gitea.token}}