Skip to content

Commit

Permalink
fix: CI/CD by pulling repository before re-tagging dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
aleortega committed Mar 12, 2024
1 parent 814f26d commit e0adbd6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/docker-next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ jobs:
run:
shell: bash
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
ref: ${{ github.event.inputs.branch_name }}
lfs: true

- name: Login to DockerHub
uses: docker/login-action@v2
with:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/publish-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ jobs:
run:
shell: bash
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
ref: ${{ github.event.inputs.branch_name }}
lfs: true

- name: Login to DockerHub
uses: docker/login-action@v2
with:
Expand Down

0 comments on commit e0adbd6

Please sign in to comment.