76 lines
2.4 KiB
YAML
76 lines
2.4 KiB
YAML
name: Build and Push Docker Image
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- dev
|
|
|
|
jobs:
|
|
build_and_push:
|
|
runs-on: ubuntu-22.04
|
|
container: ghcr.io/catthehacker/ubuntu:act-latest
|
|
|
|
steps:
|
|
- name: Set ulimit
|
|
run: |
|
|
ulimit -n 524288
|
|
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
apt-get update
|
|
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
|
|
|
|
- name: Create a symbolic link Docker
|
|
run: ln -s ~/.docker/run/docker.sock /var/run/docker.sock
|
|
|
|
- name: Login to Docker Registry
|
|
uses: docker/login-action@v2
|
|
with:
|
|
registry: git.coopgo.io
|
|
username: ncaron
|
|
password: 6744954b4a3a43422e62e8d110f90de527ce094d
|
|
|
|
- name: Docker restart
|
|
run: service docker restart
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2
|
|
options: '-e DOCKER_HOST=unix:///run/user/1000/docker.sock -v /var/run/user/1000/docker.sock:/run/user/1000/docker.sock'
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
options: '-e DOCKER_HOST=unix:///run/user/1000/docker.sock -v /var/run/user/1000/docker.sock:/run/user/1000/docker.sock'
|
|
|
|
# - 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
|
|
options: '-e DOCKER_HOST=unix:///run/user/1000/docker.sock -v /var/run/user/1000/docker.sock:/run/user/1000/docker.sock'
|
|
with:
|
|
context: "{{defaultContext}}"
|
|
push: true
|
|
tags: "git.coopgo.io/coopgo-platform/mobility-accounts:test"
|