Skip to content

Bump actions/setup-python from 5.1.0 to 5.2.0 #671

Bump actions/setup-python from 5.1.0 to 5.2.0

Bump actions/setup-python from 5.1.0 to 5.2.0 #671

Workflow file for this run

---
name: Build & release
"on":
# Target are chosen so that all commits get a chance to have their build tested.
push:
branches:
- main
pull_request:
jobs:
release:
uses: kdeldycke/workflows/.github/workflows/release.yaml@v4.1.4
secrets:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
test-binaries:
needs: release
strategy:
matrix: ${{ fromJSON(needs.release.outputs.nuitka_matrix) }}
runs-on: ${{ matrix.os }}
steps:
- name: Download artifacts
uses: actions/download-artifact@v4.1.8
id: artifacts
with:
name: ${{ matrix.bin_name }}
- name: Set binary permissions
if: runner.os != 'Windows'
run: |
chmod +x ${{ steps.artifacts.outputs.download-path }}/${{ matrix.bin_name }}
- name: Run mdedup --version
run: |
${{ steps.artifacts.outputs.download-path }}/${{ matrix.bin_name }} --version
- name: Run mdedup --help
run: |
${{ steps.artifacts.outputs.download-path }}/${{ matrix.bin_name }} --help