Skip to content

Commit

Permalink
fix workflow syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
olivier-roussel committed Feb 13, 2025
1 parent 46e5373 commit 2b42a77
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/nativefiledialog-extended.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
{platform: "osx-arm64", runner: "macos-14"},
{platform: "win-64", runner: "windows-latest"}]

name: "Build and publish ${{ name }} - ${{ matrix.target.platform }} conda packages on ${{ matrix.target.runner }}"
runs-on: ${{ inputs.runner }}
name: "Build and publish nativefiledialog-extended - ${{ matrix.target.platform }} conda packages on ${{ matrix.target.runner }}"
runs-on: ${{ matrix.target.runner }}
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -47,5 +47,5 @@ jobs:
run: |
cd conda/recipes/
PKG_DIR=../../../../rattler-bld
rattler-build build --recipe ${{ name }}/recipe.yaml --variant-config ../../configs/${{ matrix.target.platform }}.yaml --output-dir $PKG_DIR -c conda-forge
anaconda -t ${{ secrets.anaconda-token }} upload -u sofa-framework -l main $PKG_DIR/**/*${{ name }}*.conda --force
rattler-build build --recipe nativefiledialog-extended/recipe.yaml --variant-config ../configs/${{ matrix.target.platform }}.yaml --output-dir $PKG_DIR -c conda-forge
anaconda -t ${{ secrets.anaconda-token }} upload -u sofa-framework -l main $PKG_DIR/**/*.conda --force

0 comments on commit 2b42a77

Please sign in to comment.