mirror of Walter-Sparrow / lunar-tear
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add GitHub actions

Author: https://github.com/Sn0wfaller

authored by

Sn0wfaller and committed by
GitHub
d2c8595c 94537439

+25
+25
.github/workflows/docker-image.yml
··· 1 + name: Build and Push lunar-tear to Docker Hub 2 + 3 + on: 4 + push: 5 + branches: [ "main" ] 6 + 7 + jobs: 8 + build-and-push: 9 + runs-on: ubuntu-latest 10 + steps: 11 + - name: Checkout repository 12 + uses: actions/checkout@v4 13 + 14 + - name: Log in to Docker Hub 15 + uses: docker/login-action@v3 16 + with: 17 + username: ${{ secrets.DOCKERHUB_USERNAME }} 18 + password: ${{ secrets.DOCKERHUB_TOKEN }} 19 + 20 + - name: Build and push Docker image 21 + uses: docker/build-push-action@v5 22 + with: 23 + context: . 24 + push: true 25 + tags: kretts/lunar-tear:latest