f19d2424c5
Signed-off-by: Alec Delaney <89490472+tekktrik@users.noreply.github.com>
19 lines
482 B
YAML
19 lines
482 B
YAML
# SPDX-FileCopyrightText: 2017 Scott Shawcroft, written for Adafruit Industries
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
name: GitHub Release Actions
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
upload-release-assets:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Run GitHub Release CI workflow
|
|
uses: adafruit/workflows-circuitpython-libs/release-gh@main
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
upload-url: ${{ github.event.release.upload_url }}
|