Skip to content

0.4.0 alpha

0.4.0 alpha #7

Workflow file for this run

name: Update Source
on:
release:
types: [published]
workflow_dispatch:
jobs:
update-source:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install requests
- name: Update JSON source
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
python .github/update_source.py
- name: Update apps.json in Release 1.0
uses: softprops/action-gh-release@v2
with:
tag_name: "0.0.1-a1"
files: |
.github/source.json
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}