Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ jobs:
if: ${{ matrix.python-version == '3.12' }}
with:
path: site/
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build Docker Image
uses: docker/build-push-action@v6
with:
build-args: ${{ matrix.python-version }}

docs:
name: Deploy docs
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
packages-dir: ${{ needs.package_name.outputs.package_name}}/dist

docker:
name: Build Docker image
name: Build Docker Image
runs-on: ubuntu-latest
needs: package-name
if: ${{ needs.package-name.outputs.package_name }} == 'stapi-fastapi'
Expand All @@ -57,15 +57,15 @@ jobs:
id-token: write

steps:
- name: Log in to the Container registry
- name: Log in to the Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and Push
- name: Build and Push Docker Image
uses: docker/build-push-action@v6
with:
push: true
Expand Down