ci: Drop extra spacing in workflow

This commit is contained in:
Matt Borgerson
2026-01-11 16:06:16 -07:00
parent 6c0137d8b9
commit dff73facfc

View File

@@ -17,16 +17,13 @@ jobs:
uses: actions/checkout@v6
with:
submodules: recursive
- name: Extract image metadata (tags, labels)
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
@@ -34,7 +31,6 @@ jobs:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push image
uses: docker/build-push-action@v6
with:
@@ -52,24 +48,18 @@ jobs:
- uses: actions/setup-python@v6
with:
python-version: '3.14'
- name: Clone Tree
uses: actions/checkout@v6
with:
submodules: recursive
- name: Build Test Data
run: bash ./scripts/build_test_data.sh
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v7
- name: Build wheel
run: uv build
- name: Get package info
run: echo "TAG_NAME=wheel-$(date -u +'%Y%m%d%H%M')" >> $GITHUB_ENV
- name: Publish release
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
uses: softprops/action-gh-release@v2