63 lines
1.8 KiB
YAML
63 lines
1.8 KiB
YAML
name: Build and Push Docker Image
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- dev
|
|
|
|
jobs:
|
|
build_and_push:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ghrc.io/docker/build-push-action:v2
|
|
options: --privileged
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Login to Docker Registry
|
|
uses: docker/login-action@v2
|
|
with:
|
|
registry: git.coopgo.io
|
|
username: ncaron
|
|
password: 6744954b4a3a43422e62e8d110f90de527ce094d
|
|
|
|
# - 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
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
# - 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
|
|
# with:
|
|
# context: "{{defaultContext}}"
|
|
# push: true
|
|
# tags: "git.coopgo.io/coopgo-platform/mobility-accounts:test"
|
|
- name: Build and Push Docker Image
|
|
run: |
|
|
docker buildx build \
|
|
--platform linux/amd64,linux/arm64 \
|
|
--build-arg ACCESS_TOKEN_USR=ncaron\
|
|
--build-arg ACCESS_TOKEN_PWD=6744954b4a3a43422e62e8d110f90de527ce094d \
|
|
--tag git.coopgo.io/coopgo-platform/mobility-accounts:test \
|
|
--push .
|
|
working-directory: /work |