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:
|
|
|
|
- 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-06 11:19:37 +00:00
|
|
|
# Installation de Docker
|
2024-03-07 16:33:02 +00:00
|
|
|
- name: Install Docker
|
|
|
|
run: |
|
|
|
|
apt-get update
|
|
|
|
apt-get install -y docker.io
|
2024-03-07 08:22:20 +00:00
|
|
|
|
2024-03-07 16:33:02 +00:00
|
|
|
- name: Start Docker
|
|
|
|
run: service docker start
|
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-07 16:29:54 +00:00
|
|
|
|
2024-03-07 16:31:28 +00:00
|
|
|
- name: Count 30 seconds
|
|
|
|
run: sleep 30
|
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-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-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"
|