Fix release CI files
This commit is contained in:
parent
9d387dc3e1
commit
a062d35e31
2 changed files with 19 additions and 10 deletions
14
.github/workflows/release_gh.yml
vendored
14
.github/workflows/release_gh.yml
vendored
|
|
@ -2,13 +2,17 @@
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
name: Build CI
|
name: GitHub Release Actions
|
||||||
|
|
||||||
on: [pull_request, push]
|
on:
|
||||||
|
release:
|
||||||
|
types: [published]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
upload-release-assets:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Run Build CI workflow
|
- name: Run GitHub Release CI workflow
|
||||||
uses: adafruit/workflows-circuitpython-libs/build@main
|
uses: adafruit/workflows-circuitpython-libs/release-gh@main
|
||||||
|
with:
|
||||||
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
|
||||||
15
.github/workflows/release_pypi.yml
vendored
15
.github/workflows/release_pypi.yml
vendored
|
|
@ -2,13 +2,18 @@
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
name: Build CI
|
name: PyPI Release Actions
|
||||||
|
|
||||||
on: [pull_request, push]
|
on:
|
||||||
|
release:
|
||||||
|
types: [published]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
upload-release-assets:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Run Build CI workflow
|
- name: Run PyPI Release CI workflow
|
||||||
uses: adafruit/workflows-circuitpython-libs/build@main
|
uses: adafruit/workflows-circuitpython-libs/release-pypi@main
|
||||||
|
with:
|
||||||
|
pypi-username: ${{ secrets.pypi_username }}
|
||||||
|
pypi-password: ${{ secrets.pypi_password }}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue