2024-03-20 15:37:48 +02:00
|
|
|
name: Build And Test
|
|
|
|
run-name: ${{ gitea.actor }} is runs ci pipeline
|
2024-03-20 15:11:37 +02:00
|
|
|
on:
|
|
|
|
push
|
|
|
|
|
|
|
|
jobs:
|
2024-03-20 15:40:43 +02:00
|
|
|
build and push:
|
2024-03-20 15:43:33 +02:00
|
|
|
runs-on: docker
|
2024-03-20 15:37:48 +02:00
|
|
|
steps:
|
2024-03-20 15:50:36 +02:00
|
|
|
- name: Install Docker
|
|
|
|
run: curl -fsSL https://get.docker.com | sh
|
2024-03-20 15:37:48 +02:00
|
|
|
- name: Login to Docker Hub
|
|
|
|
uses: docker/login-action@v3
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
registry: git.jakest.us
|
2024-03-20 15:43:33 +02:00
|
|
|
- name: Checkout
|
|
|
|
uses: https://github.com/actions/checkout@v4
|
2024-03-20 16:00:44 +02:00
|
|
|
|
2024-03-20 16:06:08 +02:00
|
|
|
# - name: Extract metadata (tags, labels) for Docker
|
|
|
|
# id: meta
|
|
|
|
# uses: https://github.com/docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
|
|
|
|
# with:
|
|
|
|
# images: jt/hopeasini
|
2024-03-20 16:00:44 +02:00
|
|
|
|
2024-03-20 15:37:48 +02:00
|
|
|
- name: Build and push Docker image
|
2024-03-20 16:07:05 +02:00
|
|
|
uses: https://github.com/docker/build-push-action@v5
|
2024-03-20 15:37:48 +02:00
|
|
|
with:
|
2024-03-20 16:00:44 +02:00
|
|
|
context: .
|
|
|
|
file: ./Dockerfile
|
|
|
|
push: true
|
2024-03-20 16:06:08 +02:00
|
|
|
tags: git.jakest.us/jt/hopeasini:test
|
|
|
|
secrets: |
|
|
|
|
GIT_AUTH_TOKEN=${{ secrets.DOCKER_PASSWORD }}
|
2024-03-20 16:00:44 +02:00
|
|
|
|
|
|
|
|
|
|
|
# - name: Set up Docker Buildx
|
|
|
|
# uses: https://github.com/docker/setup-buildx-action@v3
|
|
|
|
# with:
|
|
|
|
# config-inline: |
|
|
|
|
# [registry."git.jakest.us"] # IP from local gitea instance
|
|
|
|
# http = true
|
|
|
|
# insecure = true
|
|
|
|
# - name: Build and push Docker image
|
|
|
|
# uses: https://github.com/docker/build-push-action@v5
|
|
|
|
# with:
|
|
|
|
# context: .
|
|
|
|
# file: ./Dockerfile
|
|
|
|
# push: true
|
|
|
|
# tags: test
|
|
|
|
# - name: Stop the docker container
|
|
|
|
# continue-on-error: true
|
|
|
|
# run: sudo docker stop homepage
|