Skip to content

Commit

Permalink
fix: remove guards
Browse files Browse the repository at this point in the history
  • Loading branch information
jbeveland27 committed Feb 17, 2023
1 parent 35e501c commit b7bd7b4
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:
shell: bash
run: '[ "$DID_ERROR" = "false" ] && [ "$DID_PASS" = "true" ]'

job-generate-release:
job-generate-pre-release:
runs-on: ubuntu-latest
needs: [job-test-unit, job-test-system]
steps:
Expand Down Expand Up @@ -161,7 +161,6 @@ jobs:
run: npm run package

- name: Cache Docker layers
if: steps.semantic.outputs.new_release_published == 'true'
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
Expand All @@ -170,26 +169,22 @@ jobs:
${{ runner.os }}-buildx-
- name: Set up Docker Buildx
if: steps.semantic.outputs.new_release_published == 'true'
uses: docker/setup-buildx-action@v1

- name: Login to GitHub Container Registry
if: steps.semantic.outputs.new_release_published == 'true'
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GHCR_PAT }}

- name: Gather Docker Labels
if: steps.semantic.outputs.new_release_published == 'true'
id: docker_meta
uses: crazy-max/ghaction-docker-meta@v2
with:
images: ghcr.io/${{ github.repository }}

- name: Build and Push to GitHub Container Registry
if: steps.semantic.outputs.new_release_published == 'true'
uses: docker/build-push-action@v2
with:
context: .
Expand Down

0 comments on commit b7bd7b4

Please sign in to comment.