Skip to content

Commit ebe52e5

Browse files
committed
Switching to composite actions
1 parent 722a698 commit ebe52e5

2 files changed

Lines changed: 10 additions & 19 deletions

File tree

.github/workflows/release_gh.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,13 @@
22
#
33
# SPDX-License-Identifier: MIT
44

5-
name: GitHub Release Actions
5+
name: Build CI
66

7-
on:
8-
release:
9-
types: [published]
7+
on: [pull_request, push]
108

119
jobs:
12-
upload-release-assets:
10+
test:
1311
runs-on: ubuntu-latest
1412
steps:
15-
- name: Run GitHub Release CI workflow
16-
uses: adafruit/workflows-circuitpython-libs/release-gh@main
17-
with:
18-
github-token: ${{ secrets.GITHUB_TOKEN }}
13+
- name: Run Build CI workflow
14+
uses: adafruit/workflows-circuitpython-libs/build@main

.github/workflows/release_pypi.yml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,13 @@
22
#
33
# SPDX-License-Identifier: MIT
44

5-
name: PyPI Release Actions
5+
name: Build CI
66

7-
on:
8-
release:
9-
types: [published]
7+
on: [pull_request, push]
108

119
jobs:
12-
upload-release-assets:
10+
test:
1311
runs-on: ubuntu-latest
1412
steps:
15-
- name: Run PyPI Release CI workflow
16-
uses: adafruit/workflows-circuitpython-libs/release-pypi@main
17-
with:
18-
pypi-username: ${{ secrets.pypi_username }}
19-
pypi-password: ${{ secrets.pypi_password }}
13+
- name: Run Build CI workflow
14+
uses: adafruit/workflows-circuitpython-libs/build@main

0 commit comments

Comments
 (0)