Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
mario872 committed Jul 16, 2024
2 parents 1c9c1ad + 71bbdf5 commit 02d22fe
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/compile-and-upload-docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Compile New Docker Image
run-name: Compiling New Docker Image of Class Forge
on:
push:
paths:
- 'Dockerfile'
jobs:
CompileAndUploadDockerImage:
runs-on: ubuntu-latest
steps:
# Clone class-forge repo locally
- run: git clone https://github.com/mario872/class-forge
# Log into Docker Hub
- uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
# Run upload-docker.py
- run: python upload-docker.py
working-directory: ./class-forge

0 comments on commit 02d22fe

Please sign in to comment.