remove push on commit to save on OCI storage
All checks were successful
Build Docker Image on Commit / build-and-publish (push) Successful in 5s

This commit is contained in:
merith-tk 2024-10-02 11:20:38 -07:00
parent 8a04317caa
commit 1b7b89ccc6

View file

@ -1,31 +1,26 @@
name: Build and Publish Docker Image on Commit
on:
push:
branches:
- main
tags:
- '!' # Exclude tags
jobs:
build-and-publish:
runs-on: docker-builder
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Test Docker Hello World
run: |
echo "Testing Docker connection..."
docker run hello-world
- name: Login to OCI registry
run: |
echo "${{ secrets.OCI_TOKEN }}" | docker login git.merith.xyz -u "${{ secrets.OCI_USER }}" --password-stdin
- name: Build and push Docker image
run: |
REPO=git.merith.xyz/${{ github.repository }}
# Build and push multi-platform Docker images
docker build -t $REPO:${{ github.sha }} --push .
name: Build Docker Image on Commit
on:
push:
branches:
- main
tags:
- '!' # Exclude tags
jobs:
build-and-publish:
runs-on: docker-builder
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build and push Docker image
run: |
REPO=git.merith.xyz/${{ github.repository }}
# Build Docker image
docker build -t $REPO:${{ github.sha }} .
# Remove the local image to save storage
docker rmi $REPO:${{ github.sha }}