Skip to content

Commit

Permalink
ci: simplified variables for all targets
Browse files Browse the repository at this point in the history
  • Loading branch information
TimPietrusky committed Jul 25, 2024
1 parent b9ca5e6 commit c4d2594
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,22 +47,12 @@ jobs:
echo "HUGGINGFACE_ACCESS_TOKEN=${{ secrets.HUGGINGFACE_ACCESS_TOKEN }}" >> $GITHUB_ENV
echo "RELEASE_VERSION=${GITHUB_REF##refs/heads/}" | sed 's/\//-/g' >> $GITHUB_ENV
- name: Print env
run: env

- name: Build and push the images
uses: docker/bake-action@v2
with:
push: true
targets: sd3
set: |
base.args.DOCKERHUB_REPO=${{ env.DOCKERHUB_REPO }}
base.args.DOCKERHUB_IMG=${{ env.DOCKERHUB_IMG }}
base.args.RELEASE_VERSION=${{ env.RELEASE_VERSION }}
sdxl.args.DOCKERHUB_REPO=${{ env.DOCKERHUB_REPO }}
sdxl.args.DOCKERHUB_IMG=${{ env.DOCKERHUB_IMG }}
sdxl.args.RELEASE_VERSION=${{ env.RELEASE_VERSION }}
*.args.DOCKERHUB_REPO=${{ env.DOCKERHUB_REPO }}
*.args.DOCKERHUB_IMG=${{ env.DOCKERHUB_IMG }}
*.args.RELEASE_VERSION=${{ env.RELEASE_VERSION }}
sd3.args.HUGGINGFACE_ACCESS_TOKEN=${{ env.HUGGINGFACE_ACCESS_TOKEN }}
sd3.args.DOCKERHUB_REPO=${{ env.DOCKERHUB_REPO }}
sd3.args.DOCKERHUB_IMG=${{ env.DOCKERHUB_IMG }}
sd3.args.RELEASE_VERSION=${{ env.RELEASE_VERSION }}

0 comments on commit c4d2594

Please sign in to comment.