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

89 lines
2.5 KiB
YAML
Raw Normal View History

name: Build and Push Docker Image
on:
push:
branches:
- main
- dev
jobs:
2024-03-20 10:34:30 +00:00
build-and-push:
2024-03-20 10:46:03 +00:00
runs-on: ubuntu-latest
2024-03-20 10:51:01 +00:00
container:
2024-03-20 10:52:33 +00:00
image: docker:latest
steps:
2024-03-20 10:52:33 +00:00
# - name: Checkout repository
# uses: actions/checkout@v2
2024-03-20 10:46:03 +00:00
2024-03-20 10:38:59 +00:00
2024-03-20 10:34:30 +00:00
- name: Build and Push Docker Image
run: |
2024-03-20 10:50:21 +00:00
docker run --rm \
-v /var/run/docker.sock:/var/run/docker.sock \
-v $(pwd):/workspace \
gcr.io/kaniko-project/executor:latest \
--dockerfile /workspace/Dockerfile \
--destination $DOCKER_REGISTRY/$IMAGE_NAME:$IMAGE_TAG
2024-03-20 10:34:30 +00:00
env:
DOCKER_REGISTRY: git.coopgo.io
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
IMAGE_NAME: coopgo-platform/mobility-accounts
IMAGE_TAG: test
# 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 .