2024-03-06 10:46:42 +00:00
|
|
|
name: Build and Push Docker Image
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2024-03-06 10:47:40 +00:00
|
|
|
- dev
|
2024-03-06 10:46:42 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build_and_push:
|
2024-03-06 15:26:01 +00:00
|
|
|
runs-on: ubuntu-22.04
|
2024-03-07 08:22:20 +00:00
|
|
|
container: ghcr.io/catthehacker/ubuntu:act-latest
|
2024-03-06 10:46:42 +00:00
|
|
|
|
|
|
|
steps:
|
2024-03-07 17:07:23 +00:00
|
|
|
- name: Set ulimit
|
|
|
|
run: |
|
2024-03-07 17:15:06 +00:00
|
|
|
ulimit -n 524288
|
2024-03-07 17:07:23 +00:00
|
|
|
|
2024-03-06 10:46:42 +00:00
|
|
|
- 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
|
|
|
- name: Install dependencies
|
2024-03-07 16:33:02 +00:00
|
|
|
run: |
|
|
|
|
apt-get update
|
2024-03-07 16:55:23 +00:00
|
|
|
apt-get install -y apt-transport-https ca-certificates curl software-properties-common
|
|
|
|
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
|
|
|
|
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
|
|
|
|
apt-get update
|
|
|
|
apt-get install -y docker-ce docker-ce-cli containerd.io
|
|
|
|
|
|
|
|
# Installation de Docker
|
|
|
|
# - name: Install Docker
|
|
|
|
# run: |
|
|
|
|
# apt-get update
|
|
|
|
# apt-get install -y docker.io
|
2024-03-07 08:22:20 +00:00
|
|
|
|
2024-03-07 17:01:45 +00:00
|
|
|
- name: Create a symbolic link Docker
|
2024-03-07 16:36:01 +00:00
|
|
|
run: ln -s ~/.docker/run/docker.sock /var/run/docker.sock
|
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:
|
|
|
|
registry: git.coopgo.io
|
|
|
|
username: ncaron
|
|
|
|
password: 6744954b4a3a43422e62e8d110f90de527ce094d
|
2024-03-06 10:46:42 +00:00
|
|
|
|
2024-03-07 08:22:20 +00:00
|
|
|
- name: Set up QEMU
|
2024-03-07 08:24:08 +00:00
|
|
|
uses: docker/setup-qemu-action@v2
|
2024-03-08 08:39:38 +00:00
|
|
|
with:
|
|
|
|
mount-docker-socket: true
|
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 08:39:38 +00:00
|
|
|
with:
|
|
|
|
mount-docker-socket: true
|
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"
|
2024-03-08 08:39:38 +00:00
|
|
|
mount-docker-socket: true
|