diff --git a/.github/workflows/build-docker.yml b/.github/workflows/build-docker.yml new file mode 100644 index 00000000..58829490 --- /dev/null +++ b/.github/workflows/build-docker.yml @@ -0,0 +1,71 @@ +name: build-docker + +on: + workflow_dispatch: + schedule: + - cron: '0 0 * * 0' + push: + branches: + - master # Trigger CI on main branch + pull_request: + branches: + - master # Trigger gated pipeline on PR to main + +env: + REGISTRY: ghcr.io + IMAGE_NAME: hexparrot/mineos-node + JUST_IMAGE_NAME: mineos-node + +jobs: + build-and-push-image: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + + - name: Extract metadata (tags, labels) for Docker + id: meta + uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38 + with: + tags: | + type=ref,event=pr + type=ref,event=branch + type=sha,format=long + type=raw,value=latest + images: | + ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + hexparrot/${{ env.JUST_IMAGE_NAME }} + + - name: Build Docker image (non master branch) + uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc + if: github.ref != 'refs/heads/master' + with: + context: . + load: true + push: false + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + - name: Log in to the Container registry + uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Login to DockerHub + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Build and push Docker image (master branch) + uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc + if: github.ref == 'refs/heads/master ' + with: + context: . + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file