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@0267638d8ae53966df71bb06d552129dd542dfa7
uses: docker/login-action@946f94de75ea52995b6aa1e54fd3e0aeed6cc573
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@0267638d8ae53966df71bb06d552129dd542dfa7
uses: docker/login-action@946f94de75ea52995b6aa1e54fd3e0aeed6cc573
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@7b93b2b85cab035420f0625ccc86452575bab2be
uses: docker/build-push-action@f72b3cf665d7d5fe435407befecb40d10b4266d2
with:
context: .
push: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/envia-a-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
exit-code: '1'

- name: Log in to Docker Hub
uses: docker/login-action@0267638d8ae53966df71bb06d552129dd542dfa7
uses: docker/login-action@946f94de75ea52995b6aa1e54fd3e0aeed6cc573
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
Expand All @@ -84,7 +84,7 @@ jobs:

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

- name: Log in to the Container registry
uses: docker/login-action@0267638d8ae53966df71bb06d552129dd542dfa7
uses: docker/login-action@946f94de75ea52995b6aa1e54fd3e0aeed6cc573
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
Expand All @@ -93,7 +93,7 @@ jobs:

- name: Build and push Docker image
id: build_and_push
uses: docker/build-push-action@7b93b2b85cab035420f0625ccc86452575bab2be
uses: docker/build-push-action@f72b3cf665d7d5fe435407befecb40d10b4266d2
with:
context: .
push: true
Expand Down