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

150 lines
4.1 KiB
YAML
Raw Normal View History

name: Build and Push Docker Image
on:
push:
branches:
- main
- dev
jobs:
2024-03-20 11:32:40 +00:00
checkout_repository:
2024-03-20 10:46:03 +00:00
runs-on: ubuntu-latest
2024-03-21 09:59:05 +00:00
steps:
2024-03-21 09:46:21 +00:00
- name: Checkout Repository
2024-03-22 07:46:00 +00:00
uses: actions/checkout@v4
2024-03-22 07:47:28 +00:00
2024-03-22 08:28:26 +00:00
# KANIKO
2024-03-22 08:27:04 +00:00
- name: Kaniko build and push
uses: aevea/action-kaniko@master
2024-03-21 09:46:21 +00:00
with:
2024-03-22 08:27:04 +00:00
build_file: Dockerfile
registry: git.coopgo.io
2024-03-22 13:02:39 +00:00
username: $USER
password: $PASSWORD
2024-03-21 18:49:00 +00:00
image: coopgo-platform/mobility-accounts
2024-03-22 09:05:07 +00:00
tag: test
2024-03-22 08:27:04 +00:00
cache: true
cache_registry: git.coopgo.io/coopgo-platform/mobility-accounts/cache
2024-03-22 11:03:10 +00:00
extra-args: |
2024-03-22 12:39:27 +00:00
ACCESS_TOKEN_USR=${{ gitea.actor }}
2024-03-22 13:02:39 +00:00
ACCESS_TOKEN_PWD=${{ gitea.token}}
env:
USER: ${{gitea.actor}}
PASSWORD: ${{gitea.token}}
2024-03-21 09:23:40 +00:00
2024-03-22 07:46:00 +00:00
2024-03-22 08:27:04 +00:00
# BUILDAH
# - name: Install Buildah
# run: |
# apt-get update
# apt-get install -y buildah podman
# export BUILDAH_ISOLATION=chroot
# - name: Buildah Action
# uses: redhat-actions/buildah-build@v2
# id: build-image
2024-03-22 07:46:00 +00:00
# with:
# image: coopgo-platform/mobility-accounts
2024-03-22 08:27:04 +00:00
# tags: test
# containerfiles: |
# ./Dockerfile
# build-args: |
2024-03-22 09:06:50 +00:00
# ACCESS_TOKEN_USR=${{secrets.DOCKER_USERNAME}}
# ACCESS_TOKEN_PWD=${{secrets.DOCKER_PASSWORD}}
2024-03-22 07:46:00 +00:00
2024-03-22 08:27:04 +00:00
# - name: Push To Registry
# id: push-to-registry
# uses: redhat-actions/push-to-registry@v2
# with:
# image: ${{ steps.build-image.outputs.image }}
# tags: ${{ steps.build-image.outputs.tags }}
# registry: git.coopgo.io
2024-03-22 09:06:50 +00:00
# username: ${{secrets.DOCKER_USERNAME}}
# password: ${{secrets.DOCKER_PASSWORD}}
2024-03-21 10:07:04 +00:00
2024-03-22 07:46:00 +00:00
# DOCKER
2024-03-21 18:51:35 +00:00
# - name: Install Docker
# run: |
# apt-get update
# apt-get install -y docker.io
2024-03-21 18:49:00 +00:00
# - name: Login to Docker Registry
# uses: docker/login-action@v2
# with:
# registry: git.coopgo.io
2024-03-22 09:06:50 +00:00
# username: ${{secrets.DOCKER_USERNAME}}
# password: ${{secrets.DOCKER_PASSWORD}}
2024-03-20 11:53:16 +00:00
2024-03-21 18:49:00 +00:00
# - 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: |
2024-03-22 09:06:50 +00:00
# ACCESS_TOKEN_USR=${{secrets.DOCKER_USERNAME}}
# ACCESS_TOKEN_PWD=${{secrets.DOCKER_PASSWORD}}
2024-03-21 18:49:00 +00:00
# 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
2024-03-22 09:06:50 +00:00
# username: ${{secrets.DOCKER_USERNAME}}
# password: ${{secrets.DOCKER_PASSWORD}}
# - 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: |
2024-03-22 09:06:50 +00:00
# docker build -t git.coopgo.io/coopgo-platform/mobility-accounts:test --build-arg ACCESS_TOKEN_USR=${{secrets.DOCKER_USERNAME}} --build-arg ACCESS_TOKEN_PWD=${{secrets.DOCKER_PASSWORD}} .