2024-03-06 10:46:42 +00:00
|
|
|
name: Build and Push Docker Image
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2024-03-08 15:53:28 +00:00
|
|
|
- main
|
2024-03-06 10:47:40 +00:00
|
|
|
- dev
|
2024-03-06 10:46:42 +00:00
|
|
|
|
|
|
|
jobs:
|
2024-03-13 10:52:52 +00:00
|
|
|
checkout_repository:
|
2024-03-13 09:14:26 +00:00
|
|
|
runs-on: ubuntu-latest
|
2024-03-13 10:52:52 +00:00
|
|
|
|
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-13 11:01:42 +00:00
|
|
|
login_docker_registry:
|
|
|
|
runs-on: ubuntu-latest
|
2024-03-13 11:03:55 +00:00
|
|
|
container: ghcr.io/catthehacker/ubuntu:act-latest
|
2024-03-13 11:01:42 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Login to Docker Registry
|
|
|
|
uses: docker/login-action@v2
|
|
|
|
with:
|
|
|
|
registry: git.coopgo.io
|
|
|
|
username: ncaron
|
|
|
|
password: 6744954b4a3a43422e62e8d110f90de527ce094d
|
|
|
|
|
2024-03-13 10:52:52 +00:00
|
|
|
build_and_push_image:
|
|
|
|
runs-on: ubuntu-latest
|
2024-03-13 13:06:06 +00:00
|
|
|
container: ghcr.io/catthehacker/ubuntu:act-latest
|
2024-03-13 10:52:52 +00:00
|
|
|
|
|
|
|
steps:
|
2024-03-13 08:31:16 +00:00
|
|
|
# - name: Run Docker
|
|
|
|
# run: |
|
|
|
|
# docker --version
|
|
|
|
# dockerd
|
|
|
|
# docker buildx build --platform linux/amd64,linux/arm64 -t git.coopgo.io/coopgo-platform/mobility-accounts:test .
|
|
|
|
# docker push git.coopgo.io/coopgo-platform/mobility-accounts:test
|
2024-03-06 11:19:13 +00:00
|
|
|
|
2024-03-13 11:01:42 +00:00
|
|
|
# - name: Set up Docker Buildx
|
|
|
|
# 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-13 11:32:45 +00:00
|
|
|
|
2024-03-13 13:02:52 +00:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
apt update
|
|
|
|
apt install -y git
|
|
|
|
|
|
|
|
- name: Clone repository
|
|
|
|
run: |
|
|
|
|
git clone -b dev --depth 1 https://ncaron:6744954b4a3a43422e62e8d110f90de527ce094d@git.coopgo.io/coopgo-platform/mobility-accounts.git .
|
2024-03-13 11:44:16 +00:00
|
|
|
|
2024-03-13 11:26:43 +00:00
|
|
|
- name: Check folder
|
|
|
|
run: |
|
|
|
|
ls -la
|
|
|
|
|
2024-03-13 10:23:49 +00:00
|
|
|
- name: Build and Push Docker Image
|
|
|
|
run: |
|
2024-03-13 11:31:39 +00:00
|
|
|
docker build -t git.coopgo.io/coopgo-platform/mobility-accounts:test --build-arg ACCESS_TOKEN_USR=ncaron --build-arg ACCESS_TOKEN_PWD=6744954b4a3a43422e62e8d110f90de527ce094d .
|