Skip to content

Commit

Permalink
PRO-599 FIX Checkout code before calling scripts/
Browse files Browse the repository at this point in the history
  • Loading branch information
bender2352 committed Nov 11, 2024
1 parent 32ae2fa commit b378179
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,8 @@ jobs:
with:
fetch-tags: true

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Log in to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down Expand Up @@ -118,11 +115,8 @@ jobs:
with:
fetch-tags: true

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Log in to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down Expand Up @@ -158,8 +152,11 @@ jobs:
TERRATEAM_ENVIRONMENT: ${{ github.event.inputs.environment || 'production' }}

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Log in to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down

0 comments on commit b378179

Please sign in to comment.