Skip to content

Minor fixes to artifacts and fix conda env in experiments #3

Minor fixes to artifacts and fix conda env in experiments

Minor fixes to artifacts and fix conda env in experiments #3

Workflow file for this run

name: Build and Push Docker Image
on:
push:
tags:
- '*' # Trigger on any tag push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
lfs: true # Enable Git lfs
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Make docker-build.sh executable
run: chmod +x docker-build.sh
- name: Build Docker image using docker-build.sh
run: ./docker-build.sh
- name: Tag Docker image
run: docker tag shatter-artifact-pets2025 rishis8/shatter-artifact-pets2025:${{ github.ref_name }}
- name: Push Docker image
run: docker push rishis8/shatter-artifact-pets2025:${{ github.ref_name }}