Skip to content

Commit

Permalink
fix: shifting things around so env is available
Browse files Browse the repository at this point in the history
  • Loading branch information
voodooGQ committed Feb 12, 2024
1 parent b91d625 commit 5999f9c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@ jobs:
id: login-ecr
uses: aws-actions/amazon-ecr-login@v1

build_and_push:
needs: [setup]
runs-on: ubuntu-latest
steps:
- name: Set branch name if not PR
if: github.event_name != 'pull_request'
run: echo "BRANCH_NAME=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_ENV
Expand All @@ -94,10 +98,6 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

build_an_push:
needs: [setup]
runs-on: ubuntu-latest
steps:
# Docs Site
- name: Build and push docs site
uses: docker/build-push-action@v2
Expand Down

0 comments on commit 5999f9c

Please sign in to comment.