56 lines
1.3 KiB
YAML
56 lines
1.3 KiB
YAML
name: Build and Push Docker Image
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- dev
|
|
|
|
jobs:
|
|
build_and_push:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ghcr.io/catthehacker/ubuntu:act-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
# Installation de Docker
|
|
# - name: Install Docker
|
|
# run: |
|
|
# apt-get update
|
|
# apt-get install -y docker.io
|
|
|
|
- name: Login to Docker Registry
|
|
uses: docker/login-action@v2
|
|
with:
|
|
registry: ${{ secrets.DOCKER_REGISRTY }}
|
|
username: ${{ secrets.REGISTRY_USERNAME }}
|
|
password: ${{ secrets.REGISTRY_TOKEN }}
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
with:
|
|
driver-opts: name=builder0
|
|
|
|
|
|
# - 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: Build and push Docker image
|
|
uses: docker/build-push-action@v2
|
|
with:
|
|
context: "{{defaultContext}}"
|
|
push: true
|
|
tags: "git.coopgo.io/coopgo-platform/mobility-accounts:test"
|