Minor fixes to artifacts and fix conda env in experiments #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |