miércoles, 15 de mayo de 2024

GET/docker.com

 <=


name: ci


on:

  push:

    branches:

      - "main"


jobs:

  docker:

    runs-on: ubuntu-latest

    steps:

      - name: Checkout

        uses: actions/checkout@v4

      - name: Log in to Docker Hub

        uses: docker/login-action@v3

        with:

          username: ${{ secrets.DOCKER_USER }}

          password: ${{ secrets.DOCKER_PAT }}

      - name: Set up Docker Buildx

        uses: docker/setup-buildx-action@v3

        with:

          version: "lab:latest"

          driver: cloud

          endpoint: "<ORG>/default"

          install: true

      - name: Build and push

        uses: docker/build-push-action@v5

        with:

          context: .

          tags: "<IMAGE>"

          # For pull requests, export results to the build cache.

          # Otherwise, push to a registry.

          outputs: ${{ github.event_name == 'pull_request' && 'type=cacheonly' || 'type=registry,push=true' }}

</script>

No hay comentarios:

Publicar un comentario

Gracias por participar en mi pagina