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-06 10:46:42 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2
|
2024-03-07 08:06:06 +00:00
|
|
|
|
2024-03-06 11:19:37 +00:00
|
|
|
# Installation de Docker
|
2024-03-07 08:06:06 +00:00
|
|
|
- name: Install Docker
|
2024-03-07 08:13:11 +00:00
|
|
|
run: |
|
|
|
|
apt-get update
|
|
|
|
apt-get install -y docker.io
|
|
|
|
service docker start
|
2024-03-07 08:14:48 +00:00
|
|
|
echo "6744954b4a3a43422e62e8d110f90de527ce094d" | docker login git.coopgo.io -u ncaron --password-stdin
|
|
|
|
docker build -t git.coopgo.io/coopgo-platform/mobility-accounts:test .
|
|
|
|
docker push git.coopgo.io/coopgo-platform/mobility-accounts
|
2024-03-06 10:46:42 +00:00
|
|
|
|
2024-03-07 08:13:11 +00:00
|
|
|
|
2024-03-07 07:56:32 +00:00
|
|
|
# - name: Login to Docker Registry
|
|
|
|
# uses: docker/login-action@v1
|
|
|
|
# with:
|
|
|
|
# registry: git.coopgo.io
|
|
|
|
# username: ncaron
|
|
|
|
# password: 6744954b4a3a43422e62e8d110f90de527ce094d
|
2024-03-06 10:46:42 +00:00
|
|
|
|
2024-03-07 07:56:32 +00:00
|
|
|
# - name: Set up QEMU
|
|
|
|
# uses: docker/setup-qemu-action@v1
|
2024-03-06 11:19:13 +00:00
|
|
|
|
2024-03-07 07:56:32 +00:00
|
|
|
# - name: Set up Docker Buildx
|
|
|
|
# uses: docker/setup-buildx-action@v1
|
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 07:56:32 +00:00
|
|
|
# - name: Build and push Docker image
|
|
|
|
# uses: docker/build-push-action@v1
|
|
|
|
# with:
|
|
|
|
# context: "{{defaultContext}}"
|
|
|
|
# push: true
|
|
|
|
# tags: "git.coopgo.io/coopgo-platform/mobility-accounts:test"
|
|
|
|
|
2024-03-07 08:14:48 +00:00
|
|
|
# - name: Deploy
|
|
|
|
# run: |
|
|
|
|
# echo "6744954b4a3a43422e62e8d110f90de527ce094d" | docker login git.coopgo.io -u ncaron --password-stdin
|
|
|
|
# docker build -t git.coopgo.io/coopgo-platform/mobility-accounts:test .
|
|
|
|
# docker push git.coopgo.io/coopgo-platform/mobility-accounts
|