mobility-accounts/.github/workflows/build.yml

115 lines
3.1 KiB
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@v2
- name: Install Docker
run: |
apt-get update
apt-get install -y docker.io
- name: Kaniko build and push
uses: aevea/action-kaniko@master
with:
build_file: Dockerfile
registry: git.coopgo.io
username: ncaron
password: 6744954b4a3a43422e62e8d110f90de527ce094d
image: coopgo-platform/mobility-accounts
tag: latest
cache: true
cache_registry: git.coopgo.io/coopgo-platform/mobility-accounts/cache
extra-args: |
ACCESS_TOKEN_USR=ncaron
ACCESS_TOKEN_PWD=6744954b4a3a43422e62e8d110f90de527ce094d
# - name: Login to Docker Registry
# uses: docker/login-action@v2
# with:
# registry: git.coopgo.io
# username: ncaron
# password: 6744954b4a3a43422e62e8d110f90de527ce094d
# - name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v2
# - name: Build and Push Docker Image
# uses: docker/build-push-action@v2
# with:
# context: .
# file: ./Dockerfile
# push: true
# tags: git.coopgo.io/coopgo-platform/mobility-accounts:test
# build-args: |
# ACCESS_TOKEN_USR=ncaron
# ACCESS_TOKEN_PWD=6744954b4a3a43422e62e8d110f90de527ce094d
# login_docker_registry:
# runs-on:
# group: ubuntu-latest
# container:
# image: ghcr.io/catthehacker/ubuntu:act-latest
# volumes:
# - /workspace/coopgo-platform/mobility-accounts:/workspace/coopgo-platform/mobility-accounts
# steps:
# - name: Login to Docker Registry
# uses: docker/login-action@v2
# with:
# registry: git.coopgo.io
# username: ncaron
# password: 6744954b4a3a43422e62e8d110f90de527ce094d
# - name: Check folders
# run: |
# pwd
# ls -la
# build_and_push_image:
# runs-on:
# group: ubuntu-latest
# container:
# image: docker:20.10.7
# volumes:
# - /workspace/coopgo-platform/mobility-accounts:/workspace/coopgo-platform/mobility-accounts
# steps:
# # - name: Get Gitea Tags
# # id: get_tags
# # run: |
# # git fetch --tags
# # latest_tag=$(git describe --tags --abbrev=0)
# # echo "Latest tag found: $latest_tag"
# # echo "::set-output name=latest_tag::$latest_tag"
# # - name: Test tags
# # run: |
# # echo "Latest tag found: ${{ steps.get_tags.outputs.latest_tag }}"
# # - name: Check Docker version
# # run: |
# # docker --version
# # dockerd &
# - name: Check folder
# run: |
# pwd
# ls -la
# - name: Build and Push Docker Image
# run: |
# docker build -t git.coopgo.io/coopgo-platform/mobility-accounts:test --build-arg ACCESS_TOKEN_USR=ncaron --build-arg ACCESS_TOKEN_PWD=6744954b4a3a43422e62e8d110f90de527ce094d .