Update python-versions-runner.yml

This commit is contained in:
Alice King Tai Poon 2022-06-05 15:47:01 +08:00 committed by GitHub
parent 2693494e59
commit 5f5aa70506
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,14 +18,14 @@ defaults:
jobs: jobs:
trigger_builds: trigger_builds:
name: Trigger python build name: Trigger python build
runs-on: ubuntu-latest runs-on: ubuntu-22.04
steps: steps:
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v2 uses: actions/checkout@main
- name: Trigger python workflow - name: Trigger python workflow
run: | run: |
$versions = ${{ github.event.inputs.versions }} $versions = ${{ github.event.inputs.versions }}
./builders/python-versions-runner.ps1 -Versions $versions.Split(",") -PublishRelease ${{ github.event.inputs.publish-releases }} ./builders/python-versions-runner.ps1 -Versions $versions.Split(",") -PublishRelease ${{ github.event.inputs.publish-releases }}
env: env:
PERSONAL_TOKEN: ${{ secrets.PERSONAL_TOKEN }} PERSONAL_TOKEN: ${{ secrets.PERSONAL_TOKEN }}