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@946f94de75ea52995b6aa1e54fd3e0aeed6cc573
uses: docker/login-action@3864d6aed8ff134b2ed894ce00c87695c709c870
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@946f94de75ea52995b6aa1e54fd3e0aeed6cc573
uses: docker/login-action@3864d6aed8ff134b2ed894ce00c87695c709c870
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@f72b3cf665d7d5fe435407befecb40d10b4266d2
uses: docker/build-push-action@ff26911fd365b0233252dfbd8eede1c0e9ef9a51
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@946f94de75ea52995b6aa1e54fd3e0aeed6cc573
uses: docker/login-action@3864d6aed8ff134b2ed894ce00c87695c709c870
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@3caf19fbe3db1a1a6a8bdce189e09ac0ed35d513
uses: docker/metadata-action@020b7354dd55a28effcab0f3b19639fe24d3f58b
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@f72b3cf665d7d5fe435407befecb40d10b4266d2
uses: docker/build-push-action@ff26911fd365b0233252dfbd8eede1c0e9ef9a51
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@946f94de75ea52995b6aa1e54fd3e0aeed6cc573
uses: docker/login-action@3864d6aed8ff134b2ed894ce00c87695c709c870
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@3caf19fbe3db1a1a6a8bdce189e09ac0ed35d513
uses: docker/metadata-action@020b7354dd55a28effcab0f3b19639fe24d3f58b
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@f72b3cf665d7d5fe435407befecb40d10b4266d2
uses: docker/build-push-action@ff26911fd365b0233252dfbd8eede1c0e9ef9a51
with:
context: .
push: true
Expand Down