Add: Gitea Actions workflow file [test]
This commit is contained in:
parent
7abe84e951
commit
f9deb0aff0
|
@ -0,0 +1,36 @@
|
|||
name: Build and Push Docker Image
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build-and-push:
|
||||
runs-on: ubuntu-latest # I have self-hosted actions runner :D
|
||||
|
||||
steps:
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
|
||||
- name: Login to Container Registry to push the artifact after build
|
||||
run: echo "${{ secrets.CR_passkey }}" | docker login ${{ secrets.CR_endpoint }} -u ${{ secrets.CR_username }} --password-stdin
|
||||
|
||||
- name: Generate tag for the image
|
||||
run: |
|
||||
SHA_TAG=${CI_COMMIT_SHA::5}
|
||||
REPO_NAME=$(basename $CI_REPOSITORY)
|
||||
IMAGE_TAG_SHA="${{ secrets.CR_endpoint }}/${{ secrets.CR_username }}/${REPO_NAME}:${SHA_TAG}"
|
||||
# IMAGE_TAG_LATEST="${{ secrets.CR_endpoint }}/${{ secrets.CR_username }}/${REPO_NAME}:latest"
|
||||
|
||||
|
||||
- name: Build container image
|
||||
run: docker build -t $IMAGE_TAG_SHA . # -t $IMAGE_TAG_LATEST .
|
||||
|
||||
- name: Push Docker image to Container Registry
|
||||
run: |
|
||||
docker push $IMAGE_TAG_SHA
|
||||
|
||||
|
Loading…
Reference in New Issue