test workflow build and push on gitea registry
Build and Push Docker Image / build_and_push (push) Failing after 34s
Details
Build and Push Docker Image / build_and_push (push) Failing after 34s
Details
This commit is contained in:
parent
02229478ec
commit
11a8839fcd
|
@ -8,34 +8,33 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
build_and_push:
|
build_and_push:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
|
container: ghcr.io/catthehacker/ubuntu:act-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
# Installation de Docker
|
# Installation de Docker
|
||||||
- name: Install Docker
|
# - name: Install Docker
|
||||||
run: |
|
# run: |
|
||||||
apt-get update
|
# apt-get update
|
||||||
apt-get install -y docker.io
|
# apt-get install -y docker.io
|
||||||
service docker start
|
|
||||||
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
|
|
||||||
|
|
||||||
|
# - name: Start Docker
|
||||||
|
# run: service docker start
|
||||||
|
|
||||||
# - name: Login to Docker Registry
|
- name: Login to Docker Registry
|
||||||
# uses: docker/login-action@v1
|
uses: docker/login-action@v1
|
||||||
# with:
|
with:
|
||||||
# registry: git.coopgo.io
|
registry: git.coopgo.io
|
||||||
# username: ncaron
|
username: ncaron
|
||||||
# password: 6744954b4a3a43422e62e8d110f90de527ce094d
|
password: 6744954b4a3a43422e62e8d110f90de527ce094d
|
||||||
|
|
||||||
# - name: Set up QEMU
|
- name: Set up QEMU
|
||||||
# uses: docker/setup-qemu-action@v1
|
uses: docker/setup-qemu-action@v1
|
||||||
|
|
||||||
# - name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
# uses: docker/setup-buildx-action@v1
|
uses: docker/setup-buildx-action@v1
|
||||||
|
|
||||||
# - name: Get Gitea Tags
|
# - name: Get Gitea Tags
|
||||||
# id: get_tags
|
# id: get_tags
|
||||||
|
@ -49,15 +48,9 @@ jobs:
|
||||||
# run: |
|
# run: |
|
||||||
# echo "Latest tag found: ${{ steps.get_tags.outputs.latest_tag }}"
|
# echo "Latest tag found: ${{ steps.get_tags.outputs.latest_tag }}"
|
||||||
|
|
||||||
# - name: Build and push Docker image
|
- name: Build and push Docker image
|
||||||
# uses: docker/build-push-action@v1
|
uses: docker/build-push-action@v1
|
||||||
# with:
|
with:
|
||||||
# context: "{{defaultContext}}"
|
context: "{{defaultContext}}"
|
||||||
# push: true
|
push: true
|
||||||
# tags: "git.coopgo.io/coopgo-platform/mobility-accounts:test"
|
tags: "git.coopgo.io/coopgo-platform/mobility-accounts:test"
|
||||||
|
|
||||||
# - 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
|
|
||||||
|
|
Loading…
Reference in New Issue