Skip to content

Commit

Permalink
Fix environment vars
Browse files Browse the repository at this point in the history
  • Loading branch information
egonbraun committed Jun 11, 2024
1 parent ac337c7 commit 9fdae7e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ on:

env:
DOCKER_BUILDKIT: 1
PROJECT_DOCKER_HOST: ghcr.io
PROJECT_DOCKER_ORG: schubergphilis
PROJECT_DOCKER_HOST: ${{ vars.PROJECT_DOCKER_HOST }}
PROJECT_DOCKER_ORG: ${{ vars.PROJECT_DOCKER_ORG }}
PROJECT_DOCKER_PLATFORMS: ${{ vars.PROJECT_DOCKER_PLATFORMS }}
PROJECT_NAME: ${{ vars.PROJECT_NAME }}

Expand Down Expand Up @@ -95,7 +95,6 @@ jobs:
name: CD
runs-on: ubuntu-22.04
needs: ci
environment: dev
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
permissions:
id-token: write
Expand Down

0 comments on commit 9fdae7e

Please sign in to comment.