diff --git a/.github/workflows/prueba.yml b/.github/workflows/prueba.yml new file mode 100644 index 00000000..bd5f9d36 --- /dev/null +++ b/.github/workflows/prueba.yml @@ -0,0 +1,43 @@ +name: Prueba + +on: + push: + branches: + - dev/prueba + +permissions: + contents: read + id-token: write + packages: write + +jobs: + docker: + runs-on: ubuntu-latest + environment: release + steps: + - name: "Check out source code" + uses: "actions/checkout@v4" + with: + fetch-depth: 0 + - name: Capture Docker metadata + id: meta + uses: docker/metadata-action@v5 + with: + images: | + ghcr.io/artefactual-labs/a3m + tags: | + type=semver,pattern={{raw}} + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Log in to the container registry + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Build and push Docker image + uses: docker/build-push-action@v5 + with: + push: false + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }}