Prueba 002 #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: Prueba | |
run: ls -lha | |
- 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 }} |