Deployment of battery cycler drivers to development env #256
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow deploy system tools to development environment | ||
name: Deployment of battery cycler drivers to development env | ||
on: | ||
push: | ||
branches: [ "drv_can", "drv_epc", "drv_bms", "drv_db", "drv_ea", | ||
"drv_bk", "drv_rs", "drv_scpi", "drv_base", "drv_flow", | ||
"drv_mqtt" ] | ||
pull_request_review: | ||
types: [submitted] | ||
review: | ||
pull_request: | ||
base: | ||
ref: [ "drv_can", "drv_epc", "drv_bms", "drv_db", "drv_ea", | ||
"drv_bk", "drv_rs", "drv_scpi", "drv_base", "drv_flow", | ||
"drv_mqtt" ] | ||
jobs: | ||
build-package-on-push: | ||
if: ${{ github.event_name == 'push'}} | ||
name: Build package ${{ github.ref_name }} | ||
uses: WattRex/System-Tools/.github/workflows/build_python_package.yml@develop | ||
Check failure on line 25 in .github/workflows/deploy_drivers_2_development.yml GitHub Actions / Deployment of battery cycler drivers to development envInvalid workflow file
|
||
with: | ||
module-name: ${{ github.ref_name }} | ||
build-package-on-pull-request: | ||
if: ${{ github.event_name == 'pull_request_review' && github.event.review.state == 'approved' }} | ||
name: Build package ${{ github.event.pull_request.head.ref }} | ||
uses: WattRex/System-Tools/.github/workflows/build_python_package.yml@develop | ||
with: | ||
module-name: ${{ github.event.pull_request.head.ref }} | ||
publish-package: | ||
name: Publish package ${{ github.event.pull_request.head.ref }} to PyPi | ||
if: ${{ github.event_name == 'pull_request_review' }} && ${{ github.event.review.state == 'approved' }} | ||
needs: build-package-on-pull-request | ||
runs-on: ubuntu-latest | ||
environment: development | ||
permissions: | ||
id-token: write | ||
# strategy: | ||
# fail-fast: false | ||
# matrix: | ||
# # python-version: ["3.7", "3.9", "3.11"] | ||
# python-version: ["3.11"] | ||
steps: | ||
- name: Download a single artifact | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: ${{ github.event.pull_request.head.ref }} | ||
path: ${{ github.event.pull_request.head.ref }}/dist/ | ||
- name: Publish package to PyPI | ||
uses: pypa/gh-action-pypi-publish@f8c70e705ffc13c3b4d1221169b84f12a75d6ca8 | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_API_TOKEN }} | ||
packages-dir: ${{ github.event.pull_request.head.ref }}/dist/ |