Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/despliega-cloud-run.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,14 @@ jobs:
token_format: access_token

- name: Login en Artifact Registry
uses: docker/login-action@04bf81902ca5d9c8e9f40ca42da112a7cb239165
uses: docker/login-action@d74126fafb7d8baee06dfff4003b911af7cf0662
with:
registry: ${{ vars.GCP_REGION }}-docker.pkg.dev
username: oauth2accesstoken
password: ${{ steps.gcp_auth.outputs.access_token }}

- name: Login en GHCR
uses: docker/login-action@04bf81902ca5d9c8e9f40ca42da112a7cb239165
uses: docker/login-action@d74126fafb7d8baee06dfff4003b911af7cf0662
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand All @@ -96,7 +96,7 @@ jobs:
- name: Build y publicar imagen
if: github.event_name != 'workflow_dispatch'
id: build_and_push
uses: docker/build-push-action@473e09f9b5aedf66570255d5249136a73b8f2d86
uses: docker/build-push-action@abf612226dcaa0fa742b57b98c02cf79cc4866cc
with:
context: .
push: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/envia-a-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,14 @@ jobs:
exit-code: '1'

- name: Log in to Docker Hub
uses: docker/login-action@04bf81902ca5d9c8e9f40ca42da112a7cb239165
uses: docker/login-action@d74126fafb7d8baee06dfff4003b911af7cf0662
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@17e943b6741018cb076d01088a79f7a301f67b15
uses: docker/metadata-action@530a407188b1fe155ed1e7bdbb03e70a5eb8cc6a
with:
images: ${{ env.DOCKERHUB_IMAGE }}
tags: |
Expand All @@ -84,7 +84,7 @@ jobs:

- name: Build and push Docker image
id: build_and_push
uses: docker/build-push-action@473e09f9b5aedf66570255d5249136a73b8f2d86
uses: docker/build-push-action@abf612226dcaa0fa742b57b98c02cf79cc4866cc
with:
context: .
push: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/envia-a-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,15 @@ jobs:
exit-code: '1'

- name: Log in to the Container registry
uses: docker/login-action@04bf81902ca5d9c8e9f40ca42da112a7cb239165
uses: docker/login-action@d74126fafb7d8baee06dfff4003b911af7cf0662
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@17e943b6741018cb076d01088a79f7a301f67b15
uses: docker/metadata-action@530a407188b1fe155ed1e7bdbb03e70a5eb8cc6a
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
Expand All @@ -93,7 +93,7 @@ jobs:

- name: Build and push Docker image
id: build_and_push
uses: docker/build-push-action@473e09f9b5aedf66570255d5249136a73b8f2d86
uses: docker/build-push-action@abf612226dcaa0fa742b57b98c02cf79cc4866cc
with:
context: .
push: true
Expand Down
Loading