CircuitPython 9.2.1 #53
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
# SPDX-FileCopyrightText: 2014 MicroPython & CircuitPython contributors (https://github.com/adafruit/circuitpython/graphs/contributors) | |
# | |
# SPDX-License-Identifier: MIT | |
name: Update CircuitPython.org | |
on: | |
release: | |
types: [published] | |
jobs: | |
website: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Dump GitHub context | |
run: echo "$GITHUB_CONTEXT" | |
env: | |
GITHUB_CONTEXT: ${{ toJson(github) }} | |
- name: Set up repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: false | |
show-progress: false | |
fetch-depth: 1 | |
persist-credentials: false | |
- name: Set up python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- name: Set up submodules | |
uses: ./.github/actions/deps/submodules | |
with: | |
version: true | |
- name: Set up external | |
uses: ./.github/actions/deps/external | |
- name: Versions | |
run: | | |
gcc --version | |
python3 --version | |
- name: Website | |
run: python3 build_board_info.py | |
working-directory: tools | |
env: | |
RELEASE_TAG: ${{ github.event.release.tag_name }} | |
ADABOT_GITHUB_ACCESS_TOKEN: ${{ secrets.ADABOT_GITHUB_ACCESS_TOKEN }} |