2024-03-06 10:46:42 +00:00
|
|
|
name: Build and Push Docker Image
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2024-03-08 15:53:28 +00:00
|
|
|
- main
|
2024-03-06 10:47:40 +00:00
|
|
|
- dev
|
2024-03-06 10:46:42 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build_and_push:
|
2024-03-08 15:53:28 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
|
|
image: ghcr.io/catthehacker/ubuntu:act-latest
|
2024-03-06 10:46:42 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2024-03-07 08:24:08 +00:00
|
|
|
uses: actions/checkout@v3
|
2024-03-07 08:06:06 +00:00
|
|
|
|
2024-03-07 16:55:23 +00:00
|
|
|
# Installation de Docker
|
|
|
|
# - name: Install Docker
|
|
|
|
# run: |
|
|
|
|
# apt-get update
|
|
|
|
# apt-get install -y docker.io
|
2024-03-07 08:13:11 +00:00
|
|
|
|
2024-03-07 08:22:20 +00:00
|
|
|
- name: Login to Docker Registry
|
2024-03-07 08:24:08 +00:00
|
|
|
uses: docker/login-action@v2
|
2024-03-07 08:22:20 +00:00
|
|
|
with:
|
2024-03-08 15:58:32 +00:00
|
|
|
registry: "${{ secrets.DOCKER_REGISRTY }}"
|
|
|
|
username: "${{ secrets.REGISTRY_USERNAME }}"
|
|
|
|
password: "${{ secrets.REGISTRY_TOKEN }}"
|
2024-03-06 11:19:13 +00:00
|
|
|
|
2024-03-07 08:22:20 +00:00
|
|
|
- name: Set up Docker Buildx
|
2024-03-07 08:24:08 +00:00
|
|
|
uses: docker/setup-buildx-action@v2
|
2024-03-08 15:58:32 +00:00
|
|
|
with:
|
|
|
|
driver-opts: name=builder0
|
2024-03-08 15:53:28 +00:00
|
|
|
|
2024-03-06 11:05:37 +00:00
|
|
|
|
2024-03-06 10:46:42 +00:00
|
|
|
# - 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 }}"
|
|
|
|
|
2024-03-07 08:22:20 +00:00
|
|
|
- name: Build and push Docker image
|
2024-03-07 08:24:08 +00:00
|
|
|
uses: docker/build-push-action@v2
|
2024-03-07 08:22:20 +00:00
|
|
|
with:
|
|
|
|
context: "{{defaultContext}}"
|
|
|
|
push: true
|
|
|
|
tags: "git.coopgo.io/coopgo-platform/mobility-accounts:test"
|